From f639be16a016834aa152a76891739510136a0fb3 Mon Sep 17 00:00:00 2001 From: Marc Marcos Date: Thu, 7 May 2026 10:08:48 +0200 Subject: [PATCH] changes to benchmarks and script to extract data for plotting --- extract_data.py | 87 + traces/with_czero.txt | 22237 +++++++++++++++++++ traces/with_zfa.txt | 22277 +++++++++++++++++++ traces/with_zfhmin.txt | 20339 +++++++++++++++++ traces/without_czero.txt | 41965 ++++++++++++++++++++++++++++++++++++ traces/without_zfa.txt | 23123 ++++++++++++++++++++ traces/without_zfhmin.txt | 23057 ++++++++++++++++++++ zfa_micro/zfa.c | 326 +- zfhmin_micro/zfhmin.c | 10 +- zicond_micro/zicond.c | 27 +- 10 files changed, 153267 insertions(+), 181 deletions(-) create mode 100644 extract_data.py create mode 100644 traces/with_czero.txt create mode 100644 traces/with_zfa.txt create mode 100644 traces/with_zfhmin.txt create mode 100644 traces/without_czero.txt create mode 100644 traces/without_zfa.txt create mode 100644 traces/without_zfhmin.txt diff --git a/extract_data.py b/extract_data.py new file mode 100644 index 0000000..92682ca --- /dev/null +++ b/extract_data.py @@ -0,0 +1,87 @@ +#!/usr/bin/env python3 + +import argparse +import re +import pandas as pd + +def parse_cycle_deltas(file_path): + cycle_values = [] + + csrr_pattern = re.compile(r"csrr\s+\w+,\s+cycle") + value_pattern = re.compile(r"0x[0-9a-fA-F]+$") + + with open(file_path, 'r') as f: + lines = f.readlines() + + i = 0 + while i < len(lines): + line = lines[i].strip() + + if csrr_pattern.search(line): + if i + 1 < len(lines): + next_line = lines[i+1].strip() + match = value_pattern.search(next_line) + + if match: + val = int(match.group(), 16) + cycle_values.append(val) + i += 1 + else: + print(f"Warning: Found csrr at line {i} but couldn't find value on line {i+1}") + i += 1 + + if len(cycle_values) % 2 != 0: + raise ValueError( + f"Hanging CSRR detected! Found {len(cycle_values)} cycle reads. " + "Each 'start' must have a corresponding 'end'." + ) + + data = [] + for j in range(0, len(cycle_values), 2): + start_val = cycle_values[j] + end_val = cycle_values[j+1] + delta = end_val - start_val + + data.append({ + 'start_cycle': start_val, + 'end_cycle': end_val, + 'delta': delta + }) + + return pd.DataFrame(data) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Extract cycle deltas from trace files and calculate speedup') + parser.add_argument('with_file', help='Path to the trace file (with optimization)') + parser.add_argument('without_file', help='Path to the trace file (without optimization - baseline)') + args = parser.parse_args() + + try: + df_with = parse_cycle_deltas(args.with_file) + df_without = parse_cycle_deltas(args.without_file) + + if len(df_with) != len(df_without): + raise ValueError( + f"Mismatch in number of deltas: {args.with_file} has {len(df_with)} deltas, " + f"but {args.without_file} has {len(df_without)} deltas. Cannot pair them." + ) + + result = pd.DataFrame({ + 'start_cycle_with': df_with['start_cycle'], + 'end_cycle_with': df_with['end_cycle'], + 'delta_with': df_with['delta'], + 'start_cycle_without': df_without['start_cycle'], + 'end_cycle_without': df_without['end_cycle'], + 'delta_without': df_without['delta'], + 'speedup': df_without['delta'] / df_with['delta'] + }) + + print("Cycle Delta Analysis:") + print(result) + + result.to_parquet("result.parquet") + + except FileNotFoundError as e: + print(f"Error: {e}") + except ValueError as e: + print(f"Error: {e}") diff --git a/traces/with_czero.txt b/traces/with_czero.txt new file mode 100644 index 0000000..f8b4527 --- /dev/null +++ b/traces/with_czero.txt @@ -0,0 +1,22237 @@ +core 0: 0x0000000000000100 (0x0010041b) addiw s0, zero, 1 +core 0: 3 0x0000000000000100 (0x0010041b) x8 0x0000000000000001 +core 0: 0x0000000000000104 (0x01f41413) slli s0, s0, 31 +core 0: 3 0x0000000000000104 (0x01f41413) x8 0x0000000080000000 +core 0: 0x0000000000000108 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000000000108 (0xf1402573) x10 0x0000000000000000 +core 0: 0x000000000000010c (0x18000593) li a1, 384 +core 0: 3 0x000000000000010c (0x18000593) x11 0x0000000000000180 +core 0: 0x0000000000000110 (0x00040067) jr s0 +core 0: 3 0x0000000000000110 (0x00040067) +core 0: >>>> _start +core 0: 0x0000000080000000 (0x00000093) li ra, 0 +core 0: 3 0x0000000080000000 (0x00000093) x1 0x0000000000000000 +core 0: 0x0000000080000004 (0x00000113) li sp, 0 +core 0: 3 0x0000000080000004 (0x00000113) x2 0x0000000000000000 +core 0: 0x0000000080000008 (0x00000193) li gp, 0 +core 0: 3 0x0000000080000008 (0x00000193) x3 0x0000000000000000 +core 0: 0x000000008000000c (0x00000213) li tp, 0 +core 0: 3 0x000000008000000c (0x00000213) x4 0x0000000000000000 +core 0: 0x0000000080000010 (0x00000293) li t0, 0 +core 0: 3 0x0000000080000010 (0x00000293) x5 0x0000000000000000 +core 0: 0x0000000080000014 (0x00000313) li t1, 0 +core 0: 3 0x0000000080000014 (0x00000313) x6 0x0000000000000000 +core 0: 0x0000000080000018 (0x00000393) li t2, 0 +core 0: 3 0x0000000080000018 (0x00000393) x7 0x0000000000000000 +core 0: 0x000000008000001c (0x00000413) li s0, 0 +core 0: 3 0x000000008000001c (0x00000413) x8 0x0000000000000000 +core 0: 0x0000000080000020 (0x00000493) li s1, 0 +core 0: 3 0x0000000080000020 (0x00000493) x9 0x0000000000000000 +core 0: 0x0000000080000024 (0x00000513) li a0, 0 +core 0: 3 0x0000000080000024 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080000028 (0x00000593) li a1, 0 +core 0: 3 0x0000000080000028 (0x00000593) x11 0x0000000000000000 +core 0: 0x000000008000002c (0x00000613) li a2, 0 +core 0: 3 0x000000008000002c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080000030 (0x00000693) li a3, 0 +core 0: 3 0x0000000080000030 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080000034 (0x00000713) li a4, 0 +core 0: 3 0x0000000080000034 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080000038 (0x00000793) li a5, 0 +core 0: 3 0x0000000080000038 (0x00000793) x15 0x0000000000000000 +core 0: 0x000000008000003c (0x00000813) li a6, 0 +core 0: 3 0x000000008000003c (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080000040 (0x00000893) li a7, 0 +core 0: 3 0x0000000080000040 (0x00000893) x17 0x0000000000000000 +core 0: 0x0000000080000044 (0x00000913) li s2, 0 +core 0: 3 0x0000000080000044 (0x00000913) x18 0x0000000000000000 +core 0: 0x0000000080000048 (0x00000993) li s3, 0 +core 0: 3 0x0000000080000048 (0x00000993) x19 0x0000000000000000 +core 0: 0x000000008000004c (0x00000a13) li s4, 0 +core 0: 3 0x000000008000004c (0x00000a13) x20 0x0000000000000000 +core 0: 0x0000000080000050 (0x00000a93) li s5, 0 +core 0: 3 0x0000000080000050 (0x00000a93) x21 0x0000000000000000 +core 0: 0x0000000080000054 (0x00000b13) li s6, 0 +core 0: 3 0x0000000080000054 (0x00000b13) x22 0x0000000000000000 +core 0: 0x0000000080000058 (0x00000b93) li s7, 0 +core 0: 3 0x0000000080000058 (0x00000b93) x23 0x0000000000000000 +core 0: 0x000000008000005c (0x00000c13) li s8, 0 +core 0: 3 0x000000008000005c (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080000060 (0x00000c93) li s9, 0 +core 0: 3 0x0000000080000060 (0x00000c93) x25 0x0000000000000000 +core 0: 0x0000000080000064 (0x00000d13) li s10, 0 +core 0: 3 0x0000000080000064 (0x00000d13) x26 0x0000000000000000 +core 0: 0x0000000080000068 (0x00000d93) li s11, 0 +core 0: 3 0x0000000080000068 (0x00000d93) x27 0x0000000000000000 +core 0: 0x000000008000006c (0x00000e13) li t3, 0 +core 0: 3 0x000000008000006c (0x00000e13) x28 0x0000000000000000 +core 0: 0x0000000080000070 (0x00000e93) li t4, 0 +core 0: 3 0x0000000080000070 (0x00000e93) x29 0x0000000000000000 +core 0: 0x0000000080000074 (0x00000f13) li t5, 0 +core 0: 3 0x0000000080000074 (0x00000f13) x30 0x0000000000000000 +core 0: 0x0000000080000078 (0x00000f93) li t6, 0 +core 0: 3 0x0000000080000078 (0x00000f93) x31 0x0000000000000000 +core 0: 0x000000008000007c (0x0001e2b7) lui t0, 0x1e +core 0: 3 0x000000008000007c (0x0001e2b7) x5 0x000000000001e000 +core 0: 0x0000000080000080 (0x6002829b) addiw t0, t0, 1536 +core 0: 3 0x0000000080000080 (0x6002829b) x5 0x000000000001e600 +core 0: 0x0000000080000084 (0x3002a073) csrs mstatus, t0 +core 0: 3 0x0000000080000084 (0x3002a073) c768_mstatus 0x8000000a00006000 +core 0: 0x0000000080000088 (0x00100293) li t0, 1 +core 0: 3 0x0000000080000088 (0x00100293) x5 0x0000000000000001 +core 0: 0x000000008000008c (0x01f29293) slli t0, t0, 31 +core 0: 3 0x000000008000008c (0x01f29293) x5 0x0000000080000000 +core 0: 0x0000000080000090 (0x0002da63) bgez t0, pc + 20 +core 0: 3 0x0000000080000090 (0x0002da63) +core 0: 0x00000000800000a4 (0x00000297) auipc t0, 0x0 +core 0: 3 0x00000000800000a4 (0x00000297) x5 0x00000000800000a4 +core 0: 0x00000000800000a8 (0x09028293) addi t0, t0, 144 +core 0: 3 0x00000000800000a8 (0x09028293) x5 0x0000000080000134 +core 0: 0x00000000800000ac (0x30529073) csrw mtvec, t0 +core 0: 3 0x00000000800000ac (0x30529073) c773_mtvec 0x0000000080000134 +core 0: 0x00000000800000b0 (0x00301073) csrw fcsr, zero +core 0: 3 0x00000000800000b0 (0x00301073) c1_fflags 0x0000000000000000 c2_frm 0x0000000000000000 +core 0: 0x00000000800000b4 (0xf0000053) fmv.w.x ft0, zero +core 0: 3 0x00000000800000b4 (0xf0000053) f0 0xffffffff00000000 +core 0: 0x00000000800000b8 (0xf00000d3) fmv.w.x ft1, zero +core 0: 3 0x00000000800000b8 (0xf00000d3) f1 0xffffffff00000000 +core 0: 0x00000000800000bc (0xf0000153) fmv.w.x ft2, zero +core 0: 3 0x00000000800000bc (0xf0000153) f2 0xffffffff00000000 +core 0: 0x00000000800000c0 (0xf00001d3) fmv.w.x ft3, zero +core 0: 3 0x00000000800000c0 (0xf00001d3) f3 0xffffffff00000000 +core 0: 0x00000000800000c4 (0xf0000253) fmv.w.x ft4, zero +core 0: 3 0x00000000800000c4 (0xf0000253) f4 0xffffffff00000000 +core 0: 0x00000000800000c8 (0xf00002d3) fmv.w.x ft5, zero +core 0: 3 0x00000000800000c8 (0xf00002d3) f5 0xffffffff00000000 +core 0: 0x00000000800000cc (0xf0000353) fmv.w.x ft6, zero +core 0: 3 0x00000000800000cc (0xf0000353) f6 0xffffffff00000000 +core 0: 0x00000000800000d0 (0xf00003d3) fmv.w.x ft7, zero +core 0: 3 0x00000000800000d0 (0xf00003d3) f7 0xffffffff00000000 +core 0: 0x00000000800000d4 (0xf0000453) fmv.w.x fs0, zero +core 0: 3 0x00000000800000d4 (0xf0000453) f8 0xffffffff00000000 +core 0: 0x00000000800000d8 (0xf00004d3) fmv.w.x fs1, zero +core 0: 3 0x00000000800000d8 (0xf00004d3) f9 0xffffffff00000000 +core 0: 0x00000000800000dc (0xf0000553) fmv.w.x fa0, zero +core 0: 3 0x00000000800000dc (0xf0000553) f10 0xffffffff00000000 +core 0: 0x00000000800000e0 (0xf00005d3) fmv.w.x fa1, zero +core 0: 3 0x00000000800000e0 (0xf00005d3) f11 0xffffffff00000000 +core 0: 0x00000000800000e4 (0xf0000653) fmv.w.x fa2, zero +core 0: 3 0x00000000800000e4 (0xf0000653) f12 0xffffffff00000000 +core 0: 0x00000000800000e8 (0xf00006d3) fmv.w.x fa3, zero +core 0: 3 0x00000000800000e8 (0xf00006d3) f13 0xffffffff00000000 +core 0: 0x00000000800000ec (0xf0000753) fmv.w.x fa4, zero +core 0: 3 0x00000000800000ec (0xf0000753) f14 0xffffffff00000000 +core 0: 0x00000000800000f0 (0xf00007d3) fmv.w.x fa5, zero +core 0: 3 0x00000000800000f0 (0xf00007d3) f15 0xffffffff00000000 +core 0: 0x00000000800000f4 (0xf0000853) fmv.w.x fa6, zero +core 0: 3 0x00000000800000f4 (0xf0000853) f16 0xffffffff00000000 +core 0: 0x00000000800000f8 (0xf00008d3) fmv.w.x fa7, zero +core 0: 3 0x00000000800000f8 (0xf00008d3) f17 0xffffffff00000000 +core 0: 0x00000000800000fc (0xf0000953) fmv.w.x fs2, zero +core 0: 3 0x00000000800000fc (0xf0000953) f18 0xffffffff00000000 +core 0: 0x0000000080000100 (0xf00009d3) fmv.w.x fs3, zero +core 0: 3 0x0000000080000100 (0xf00009d3) f19 0xffffffff00000000 +core 0: 0x0000000080000104 (0xf0000a53) fmv.w.x fs4, zero +core 0: 3 0x0000000080000104 (0xf0000a53) f20 0xffffffff00000000 +core 0: 0x0000000080000108 (0xf0000ad3) fmv.w.x fs5, zero +core 0: 3 0x0000000080000108 (0xf0000ad3) f21 0xffffffff00000000 +core 0: 0x000000008000010c (0xf0000b53) fmv.w.x fs6, zero +core 0: 3 0x000000008000010c (0xf0000b53) f22 0xffffffff00000000 +core 0: 0x0000000080000110 (0xf0000bd3) fmv.w.x fs7, zero +core 0: 3 0x0000000080000110 (0xf0000bd3) f23 0xffffffff00000000 +core 0: 0x0000000080000114 (0xf0000c53) fmv.w.x fs8, zero +core 0: 3 0x0000000080000114 (0xf0000c53) f24 0xffffffff00000000 +core 0: 0x0000000080000118 (0xf0000cd3) fmv.w.x fs9, zero +core 0: 3 0x0000000080000118 (0xf0000cd3) f25 0xffffffff00000000 +core 0: 0x000000008000011c (0xf0000d53) fmv.w.x fs10, zero +core 0: 3 0x000000008000011c (0xf0000d53) f26 0xffffffff00000000 +core 0: 0x0000000080000120 (0xf0000dd3) fmv.w.x fs11, zero +core 0: 3 0x0000000080000120 (0xf0000dd3) f27 0xffffffff00000000 +core 0: 0x0000000080000124 (0xf0000e53) fmv.w.x ft8, zero +core 0: 3 0x0000000080000124 (0xf0000e53) f28 0xffffffff00000000 +core 0: 0x0000000080000128 (0xf0000ed3) fmv.w.x ft9, zero +core 0: 3 0x0000000080000128 (0xf0000ed3) f29 0xffffffff00000000 +core 0: 0x000000008000012c (0xf0000f53) fmv.w.x ft10, zero +core 0: 3 0x000000008000012c (0xf0000f53) f30 0xffffffff00000000 +core 0: 0x0000000080000130 (0xf0000fd3) fmv.w.x ft11, zero +core 0: 3 0x0000000080000130 (0xf0000fd3) f31 0xffffffff00000000 +core 0: 0x0000000080000134 (0x00000297) auipc t0, 0x0 +core 0: 3 0x0000000080000134 (0x00000297) x5 0x0000000080000134 +core 0: 0x0000000080000138 (0x04428293) addi t0, t0, 68 +core 0: 3 0x0000000080000138 (0x04428293) x5 0x0000000080000178 +core 0: 0x000000008000013c (0x30529073) csrw mtvec, t0 +core 0: 3 0x000000008000013c (0x30529073) c773_mtvec 0x0000000080000178 +core 0: 0x0000000080000140 (0x00003197) auipc gp, 0x3 +core 0: 3 0x0000000080000140 (0x00003197) x3 0x0000000080003140 +core 0: 0x0000000080000144 (0x17118193) addi gp, gp, 369 +core 0: 3 0x0000000080000144 (0x17118193) x3 0x00000000800032b1 +core 0: 0x0000000080000148 (0x00003217) auipc tp, 0x3 +core 0: 3 0x0000000080000148 (0x00003217) x4 0x0000000080003148 +core 0: 0x000000008000014c (0xfb720213) addi tp, tp, -73 +core 0: 3 0x000000008000014c (0xfb720213) x4 0x00000000800030ff +core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x00000000800030c0 +core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 +core 0: 0x0000000080000158 (0x00100593) li a1, 1 +core 0: 3 0x0000000080000158 (0x00100593) x11 0x0000000000000001 +core 0: 0x000000008000015c (0x00b57063) bgeu a0, a1, pc + 0 +core 0: 3 0x000000008000015c (0x00b57063) +core 0: 0x0000000080000160 (0x00150113) addi sp, a0, 1 +core 0: 3 0x0000000080000160 (0x00150113) x2 0x0000000000000001 +core 0: 0x0000000080000164 (0x01111113) slli sp, sp, 17 +core 0: 3 0x0000000080000164 (0x01111113) x2 0x0000000000020000 +core 0: 0x0000000080000168 (0x00410133) add sp, sp, tp +core 0: 3 0x0000000080000168 (0x00410133) x2 0x00000000800230c0 +core 0: 0x000000008000016c (0x01151613) slli a2, a0, 17 +core 0: 3 0x000000008000016c (0x01151613) x12 0x0000000000000000 +core 0: 0x0000000080000170 (0x00c20233) add tp, tp, a2 +core 0: 3 0x0000000080000170 (0x00c20233) x4 0x00000000800030c0 +core 0: 0x0000000080000174 (0x2710106f) j pc + 0x1a70 +core 0: 3 0x0000000080000174 (0x2710106f) +core 0: >>>> _init +core 0: 0x0000000080001be4 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001be4 (0xbd010113) x2 0x0000000080022c90 +core 0: 0x0000000080001be8 (0xde718613) addi a2, gp, -537 +core 0: 3 0x0000000080001be8 (0xde718613) x12 0x0000000080003098 +core 0: 0x0000000080001bec (0xde718793) addi a5, gp, -537 +core 0: 3 0x0000000080001bec (0xde718793) x15 0x0000000080003098 +core 0: 0x0000000080001bf0 (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001bf0 (0x41413023) mem 0x0000000080023090 0x0000000000000000 +core 0: 0x0000000080001bf4 (0x40f60833) sub a6, a2, a5 +core 0: 3 0x0000000080001bf4 (0x40f60833) x16 0x0000000000000000 +core 0: 0x0000000080001bf8 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001bf8 (0x03f10a13) x20 0x0000000080022ccf +core 0: 0x0000000080001bfc (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001bfc (0x42813023) mem 0x00000000800230b0 0x0000000000000000 +core 0: 0x0000000080001c00 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001c00 (0x40913c23) mem 0x00000000800230a8 0x0000000000000000 +core 0: 0x0000000080001c04 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001c04 (0x00050413) x8 0x0000000000000000 +core 0: 0x0000000080001c08 (0x00058493) mv s1, a1 +core 0: 3 0x0000000080001c08 (0x00058493) x9 0x0000000000000001 +core 0: 0x0000000080001c0c (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c0c (0x42113423) mem 0x00000000800230b8 0x0000000000000000 +core 0: 0x0000000080001c10 (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c10 (0x41213823) mem 0x00000000800230a0 0x0000000000000000 +core 0: 0x0000000080001c14 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c14 (0x41313423) mem 0x0000000080023098 0x0000000000000000 +core 0: 0x0000000080001c18 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c18 (0x3f513c23) mem 0x0000000080023088 0x0000000000000000 +core 0: 0x0000000080001c1c (0x00080593) mv a1, a6 +core 0: 3 0x0000000080001c1c (0x00080593) x11 0x0000000000000000 +core 0: 0x0000000080001c20 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c20 (0xfc0a7a13) x20 0x0000000080022cc0 +core 0: 0x0000000080001c24 (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c24 (0x00020513) x10 0x00000000800030c0 +core 0: 0x0000000080001c28 (0x00020693) mv a3, tp +core 0: 3 0x0000000080001c28 (0x00020693) x13 0x00000000800030c0 +core 0: 0x0000000080001c2c (0x0c05f757) vsetvli a4, a1, e8, m1, ta, ma +core 0: 3 0x0000000080001c2c (0x0c05f757) x14 0x0000000000000000 +core 0: 0x0000000080001c30 (0x02078087) vle8.v v1, (a5) +core 0: 3 0x0000000080001c30 (0x02078087) mem 0x0000000000000000 +core 0: 0x0000000080001c34 (0x40e585b3) sub a1, a1, a4 +core 0: 3 0x0000000080001c34 (0x40e585b3) x11 0x0000000000000000 +core 0: 0x0000000080001c38 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c38 (0x00e787b3) x15 0x0000000080003098 +core 0: 0x0000000080001c3c (0x020680a7) vse8.v v1, (a3) +core 0: 3 0x0000000080001c3c (0x020680a7) mem 0x0000000000000000 0x00 +core 0: 0x0000000080001c40 (0x00e686b3) add a3, a3, a4 +core 0: 3 0x0000000080001c40 (0x00e686b3) x13 0x00000000800030c0 +core 0: 0x0000000080001c44 (0xfe0594e3) bnez a1, pc - 24 +core 0: 3 0x0000000080001c44 (0xfe0594e3) +core 0: 0x0000000080001c48 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001c48 (0x00001797) x15 0x0000000080002c48 +core 0: 0x0000000080001c4c (0x4bc78793) addi a5, a5, 1212 +core 0: 3 0x0000000080001c4c (0x4bc78793) x15 0x0000000080003104 +core 0: 0x0000000080001c50 (0x01050533) add a0, a0, a6 +core 0: 3 0x0000000080001c50 (0x01050533) x10 0x00000000800030c0 +core 0: 0x0000000080001c54 (0x40c78633) sub a2, a5, a2 +core 0: 3 0x0000000080001c54 (0x40c78633) x12 0x000000000000006c +core 0: 0x0000000080001c58 (0xf21ff0ef) jal pc - 0xe0 +core 0: 3 0x0000000080001c58 (0xf21ff0ef) x1 0x0000000080001c5c +core 0: >>>> memset +core 0: 0x0000000080001b78 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b78 (0x00c567b3) x15 0x00000000800030ec +core 0: 0x0000000080001b7c (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b7c (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b80 (0x00c50733) add a4, a0, a2 +core 0: 3 0x0000000080001b80 (0x00c50733) x14 0x000000008000312c +core 0: 0x0000000080001b84 (0x02078663) beqz a5, pc + 44 +core 0: 3 0x0000000080001b84 (0x02078663) +core 0: 0x0000000080001b88 (0x0c0077d7) vsetvli a5, zero, e8, m1, ta, ma +core 0: 3 0x0000000080001b88 (0x0c0077d7) x15 0x0000000000000010 +core 0: 0x0000000080001b8c (0x5e05c0d7) vmv.v.x v1, a1 +core 0: 3 0x0000000080001b8c (0x5e05c0d7) e8 m1 l10 v1 0x00000000000000000000000000000000 +core 0: 0x0000000080001b90 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b90 (0x00050793) x15 0x00000000800030c0 +core 0: 0x0000000080001b94 (0x04e57663) bgeu a0, a4, pc + 76 +core 0: 3 0x0000000080001b94 (0x04e57663) +core 0: 0x0000000080001b98 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b98 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b9c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b9c (0x020780a7) mem 0x00000000800030c0 0x00 +core 0: 0x0000000080001ba0 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001ba0 (0x40e60633) x12 0x000000000000005c +core 0: 0x0000000080001ba4 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba4 (0x00e787b3) x15 0x00000000800030d0 +core 0: 0x0000000080001ba8 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba8 (0xfe0618e3) +core 0: 0x0000000080001b98 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b98 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b9c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b9c (0x020780a7) mem 0x00000000800030d0 0x00 +core 0: 0x0000000080001ba0 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001ba0 (0x40e60633) x12 0x000000000000004c +core 0: 0x0000000080001ba4 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba4 (0x00e787b3) x15 0x00000000800030e0 +core 0: 0x0000000080001ba8 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba8 (0xfe0618e3) +core 0: 0x0000000080001b98 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b98 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b9c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b9c (0x020780a7) mem 0x00000000800030e0 0x00 +core 0: 0x0000000080001ba0 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001ba0 (0x40e60633) x12 0x000000000000003c +core 0: 0x0000000080001ba4 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba4 (0x00e787b3) x15 0x00000000800030f0 +core 0: 0x0000000080001ba8 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba8 (0xfe0618e3) +core 0: 0x0000000080001b98 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b98 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b9c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b9c (0x020780a7) mem 0x00000000800030f0 0x00 +core 0: 0x0000000080001ba0 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001ba0 (0x40e60633) x12 0x000000000000002c +core 0: 0x0000000080001ba4 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba4 (0x00e787b3) x15 0x0000000080003100 +core 0: 0x0000000080001ba8 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba8 (0xfe0618e3) +core 0: 0x0000000080001b98 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b98 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b9c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b9c (0x020780a7) mem 0x0000000080003100 0x00 +core 0: 0x0000000080001ba0 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001ba0 (0x40e60633) x12 0x000000000000001c +core 0: 0x0000000080001ba4 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba4 (0x00e787b3) x15 0x0000000080003110 +core 0: 0x0000000080001ba8 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba8 (0xfe0618e3) +core 0: 0x0000000080001b98 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b98 (0x0c067757) x14 0x000000000000000e +core 0: 0x0000000080001b9c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b9c (0x020780a7) mem 0x000000008000311c 0x00 +core 0: 0x0000000080001ba0 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001ba0 (0x40e60633) x12 0x000000000000000e +core 0: 0x0000000080001ba4 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba4 (0x00e787b3) x15 0x000000008000311e +core 0: 0x0000000080001ba8 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba8 (0xfe0618e3) +core 0: 0x0000000080001b98 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b98 (0x0c067757) x14 0x000000000000000e +core 0: 0x0000000080001b9c (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b9c (0x020780a7) mem 0x0000000080003128 0x00 +core 0: 0x0000000080001ba0 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001ba0 (0x40e60633) x12 0x0000000000000000 +core 0: 0x0000000080001ba4 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba4 (0x00e787b3) x15 0x000000008000312c +core 0: 0x0000000080001ba8 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba8 (0xfe0618e3) +core 0: 0x0000000080001bac (0x00008067) ret +core 0: 3 0x0000000080001bac (0x00008067) +core 0: 0x0000000080001c5c (0x00048593) mv a1, s1 +core 0: 3 0x0000000080001c5c (0x00048593) x11 0x0000000000000001 +core 0: 0x0000000080001c60 (0x00040513) mv a0, s0 +core 0: 3 0x0000000080001c60 (0x00040513) x10 0x0000000000000000 +core 0: 0x0000000080001c64 (0xd25ff0ef) jal pc - 0x2dc +core 0: 3 0x0000000080001c64 (0xd25ff0ef) x1 0x0000000080001c68 +core 0: >>>> thread_entry +core 0: 0x0000000080001988 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x0000000080001988 (0x00051463) +core 0: 0x000000008000198c (0x00008067) ret +core 0: 3 0x000000008000198c (0x00008067) +core 0: 0x0000000080001c68 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c68 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c6c (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c6c (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c70 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c70 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c74 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c74 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c78 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c78 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c7c (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c7c (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c80 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c80 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c84 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c84 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c88 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c88 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c8c (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c8c (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c90 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c90 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c94 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c94 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c98 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c98 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c9c (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c9c (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001ca0 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001ca0 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001ca4 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001ca4 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001ca8 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001ca8 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001cac (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001cac (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001cb0 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001cb0 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001cb4 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001cb4 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001cb8 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001cb8 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001cbc (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001cbc (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001cc0 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001cc0 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001cc4 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001cc4 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001cc8 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001cc8 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001ccc (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001ccc (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001cd0 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001cd0 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001cd4 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001cd4 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cd8 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cd8 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cdc (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cdc (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001ce0 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001ce0 (0x16c000ef) x1 0x0000000080001ce4 +core 0: >>>> main +core 0: 0x0000000080001e4c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e4c (0xc00027f3) x15 0x00000000000003fc +core 0: 0x0000000080001e50 (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e50 (0x00000697) x13 0x0000000080001e50 +core 0: 0x0000000080001e54 (0x07868693) addi a3, a3, 120 +core 0: 3 0x0000000080001e54 (0x07868693) x13 0x0000000080001ec8 +core 0: 0x0000000080001e58 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e58 (0x00000617) x12 0x0000000080001e58 +core 0: 0x0000000080001e5c (0x47060613) addi a2, a2, 1136 +core 0: 3 0x0000000080001e5c (0x47060613) x12 0x00000000800022c8 +core 0: 0x0000000080001e60 (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e60 (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e64 (0x00001817) auipc a6, 0x1 +core 0: 3 0x0000000080001e64 (0x00001817) x16 0x0000000080002e64 +core 0: 0x0000000080001e68 (0xc5480813) addi a6, a6, -940 +core 0: 3 0x0000000080001e68 (0xc5480813) x16 0x0000000080002ab8 +core 0: 0x0000000080001e6c (0x08000513) li a0, 128 +core 0: 3 0x0000000080001e6c (0x08000513) x10 0x0000000000000080 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ec8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ab8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ab8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002300 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002310 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002338 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002350 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002368 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002380 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x0000000080002398 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x00000000800023f8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002410 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002428 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002438 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002450 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002470 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002480 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002500 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002510 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002538 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002550 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002568 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002580 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x0000000080002598 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x00000000800025f8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002610 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002628 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002638 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002650 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002670 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002680 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e94 (0xc00027f3) x15 0x0000000000000e28 +core 0: 0x0000000080001e98 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001e98 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001e9c (0x00008067) ret +core 0: 3 0x0000000080001e9c (0x00008067) +core 0: 0x0000000080001ce4 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001ce4 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001ce8 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001ce8 (0x000a0493) x9 0x0000000080022cc0 +core 0: 0x0000000080001cec (0xcf718413) addi s0, gp, -777 +core 0: 3 0x0000000080001cec (0xcf718413) x8 0x0000000080002fa8 +core 0: 0x0000000080001cf0 (0xc0718913) addi s2, gp, -1017 +core 0: 3 0x0000000080001cf0 (0xc0718913) x18 0x0000000080002eb8 +core 0: 0x0000000080001cf4 (0xde718993) addi s3, gp, -537 +core 0: 3 0x0000000080001cf4 (0xde718993) x19 0x0000000080003098 +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002eb8 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fa8 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022cc0 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fa8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022cc0 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022cc0 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000000000e28 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000500 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cc0 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cc0 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002eb8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc0 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc1 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc2 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc3 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc4 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc5 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc6 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc7 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc8 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc9 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cca +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cca +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cca mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cca 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cca mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ccb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ccb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022cc0 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022cc0 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002eb8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022ccb mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022ccb 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022ccb mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002fa8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002fb0 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002ec0 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022ccb +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ec0 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fb0 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022ccb +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fb0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022ccb +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022ccb +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022ccb +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022ccb +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022ccb +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ec0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ccb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ccb 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ccb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ccc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ccc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ccc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ccc 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ccc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ccd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ccd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ccd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ccd 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ccd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cce +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cce +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cce mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cce 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cce mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ccf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ccf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ccf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ccf 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ccf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd0 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd1 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd2 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd3 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd4 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd5 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022ccb mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022ccb mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ec0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022cd6 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022cd6 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022cd6 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002fb0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002fb8 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002ec8 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022cd6 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ec8 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fb8 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022cd6 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fb8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022cd6 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022cd6 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022cd6 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cd6 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cd6 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ec8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd6 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd7 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd8 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd9 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cda +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cda +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cda mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cda 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cda mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cdb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cdb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cdb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cdb 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cdb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cdc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cdc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cdc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cdc 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cdc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cdd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cdd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cdd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cdd 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cdd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cde +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cde +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cde mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cde 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cde mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cdf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cdf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cdf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cdf 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cdf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce0 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022cd6 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022cd6 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ec8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022ce1 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022ce1 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022ce1 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002fb8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002fc0 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002ed0 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022ce1 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ed0 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fc0 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022ce1 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fc0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022ce1 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022ce1 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022ce1 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022ce1 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022ce1 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ed0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce1 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce2 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce3 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce4 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce5 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce6 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce7 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce8 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce9 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cea +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cea +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cea mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cea 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cea mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ceb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ceb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ceb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ceb 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ceb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cec +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cec +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022ce1 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022ce1 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ed0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022cec mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022cec 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022cec mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002fc0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002fc8 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002ed8 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022cec +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ed8 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fc8 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022cec +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fc8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022cec +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022cec +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022cec +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cec +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cec +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ed8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cec mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cec 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cec mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ced +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ced +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ced mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ced 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ced mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cee +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cee +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cee mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cee 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cee mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cef +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cef +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cef mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cef 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cef mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf0 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf1 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf2 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf3 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf4 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf5 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf6 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022cec mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022cec mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ed8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022cf7 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022cf7 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022cf7 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002fc8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002fd0 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002ee0 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022cf7 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ee0 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fd0 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022cf7 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fd0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022cf7 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022cf7 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022cf7 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cf7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cf7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ee0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf7 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf8 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf9 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfa +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfa +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfa mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfa 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfa mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfb 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfc 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfd 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfe +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfe +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfe mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfe 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfe mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cff +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cff +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cff mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cff 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cff mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d00 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d00 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d00 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d00 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d00 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d01 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d01 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d01 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d01 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d01 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d02 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d02 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022cf7 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022cf7 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ee0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d02 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d02 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d02 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002fd0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002fd8 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002ee8 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d02 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ee8 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fd8 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d02 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fd8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d02 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d02 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d02 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d02 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d02 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ee8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d02 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d02 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d02 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d03 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d03 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d03 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d03 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d03 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d04 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d04 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d04 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d04 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d04 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d05 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d05 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d05 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d05 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d05 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d06 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d06 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d06 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d06 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d06 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d07 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d07 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d07 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d07 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d07 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d08 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d08 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d08 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d08 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d08 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d09 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d09 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d09 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d09 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d09 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0a 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0b 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0c 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d02 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d02 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ee8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d0d mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d0d 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d0d mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002fd8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002fe0 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002ef0 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d0d +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ef0 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fe0 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d0d +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fe0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d0d +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d0d +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d0d +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d0d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d0d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ef0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0d 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0e 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0f 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d10 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d10 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d10 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d10 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d10 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d11 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d11 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d11 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d11 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d11 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d12 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d12 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d12 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d12 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d12 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d13 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d13 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d13 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d13 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d13 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d14 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d14 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d14 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d14 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d14 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d15 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d15 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d15 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d15 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d15 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d16 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d16 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d16 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d16 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d16 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d17 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d17 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d17 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d17 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d17 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d18 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d18 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d0d mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d0d mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ef0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d18 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d18 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d18 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002fe0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002fe8 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002ef8 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d18 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ef8 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fe8 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d18 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002fe8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d18 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d18 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d18 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d18 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d18 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ef8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d18 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d18 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d18 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d19 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d19 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d19 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d19 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d19 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1a 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1b 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1c 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1d 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1e 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1f 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d20 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d20 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d20 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d20 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d20 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d21 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d21 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d21 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d21 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d21 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d22 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d22 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d22 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d22 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d22 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d23 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d23 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d18 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d18 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ef8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d23 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d23 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d23 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002fe8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002ff0 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f00 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d23 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f00 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ff0 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d23 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002ff0 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d23 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d23 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d23 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d23 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d23 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f00 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d23 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d23 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d23 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d24 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d24 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d24 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d24 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d24 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d25 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d25 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d25 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d25 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d25 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d26 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d26 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d26 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d26 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d26 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d27 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d27 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d27 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d27 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d27 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d28 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d28 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d28 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d28 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d28 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d29 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d29 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d29 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d29 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d29 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2a 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2b 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2c 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2d 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d23 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d23 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f00 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d2e mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d2e 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d2e mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002ff0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080002ff8 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f08 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d2e +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f08 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ff8 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d2e +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080002ff8 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d2e +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d2e +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d2e +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d2e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d2e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f08 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2e 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2f 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d30 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d30 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d30 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d30 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d30 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d31 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d31 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d31 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d31 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d31 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d32 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d32 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d32 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d32 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d32 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d33 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d33 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d33 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d33 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d33 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d34 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d34 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d34 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d34 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d34 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d35 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d35 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d35 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d35 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d35 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d36 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d36 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d36 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d36 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d36 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d37 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d37 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d37 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d37 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d37 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d38 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d38 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d38 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d38 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d38 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d39 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d39 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d2e mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d2e mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f08 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d39 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d39 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d39 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080002ff8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003000 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f10 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d39 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f10 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003000 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d39 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003000 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d39 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d39 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d39 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d39 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d39 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f10 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d39 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d39 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d39 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3a 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3b 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3c 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3d 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3e 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3f 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d40 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d40 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d40 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d40 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d40 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d41 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d41 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d41 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d42 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d42 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d42 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d43 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d43 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d43 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d44 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d44 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d39 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d39 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f10 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d44 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003000 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003008 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f18 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d44 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f18 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003008 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d44 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003008 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d44 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d44 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d44 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d44 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d44 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f18 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d44 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d45 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d45 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d45 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d46 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d46 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d46 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d47 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d47 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d47 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d48 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d48 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d48 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d49 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d49 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d49 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4a 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4b 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4c 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4d 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4e 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d44 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d44 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f18 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d4f 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003008 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003010 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f20 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d4f +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f20 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003010 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d4f +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003010 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d4f +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d4f +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d4f +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d4f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d4f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f20 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4f 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d50 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d50 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d50 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d51 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d51 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d51 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d52 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d52 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d52 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d53 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d53 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d53 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d54 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d54 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d54 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d55 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d55 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d55 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d56 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d56 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d56 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d57 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d57 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d57 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d58 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d58 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d58 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d59 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d59 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d59 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d4f mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d4f mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f20 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d5a 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003010 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003018 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f28 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d5a +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f28 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003018 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d5a +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003018 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d5a +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d5a +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d5a +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d5a +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d5a +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f28 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5a 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5b 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5c 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5d 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5e 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5f 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d60 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d60 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d60 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d61 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d61 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d61 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d62 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d62 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d62 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d63 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d63 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d63 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d64 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d64 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d64 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d65 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d65 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d5a mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d5a mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f28 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d65 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003018 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003020 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f30 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d65 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f30 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003020 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d65 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003020 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d65 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d65 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d65 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d65 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d65 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f30 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d65 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d66 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d66 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d66 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d67 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d67 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d67 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d68 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d68 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d68 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d69 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d69 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d69 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6a 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6b 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6c 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6d 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6e 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6f 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d70 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d70 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d65 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d65 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f30 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d70 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003020 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003028 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f38 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d70 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f38 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003028 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d70 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003028 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d70 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d70 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d70 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d70 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d70 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f38 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d70 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d71 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d71 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d71 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d72 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d72 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d72 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d73 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d73 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d73 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d74 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d74 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d74 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d75 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d75 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d75 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d76 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d76 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d76 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d77 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d77 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d77 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d78 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d78 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d78 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d79 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d79 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d79 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7a 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d70 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d70 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f38 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d7b 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003028 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003030 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f40 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d7b +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f40 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003030 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d7b +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003030 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d7b +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d7b +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d7b +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d7b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d7b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f40 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7b 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7c 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7d 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7e 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7f 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d80 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d80 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d80 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d81 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d81 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d81 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d82 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d82 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d82 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d83 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d83 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d83 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d84 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d84 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d84 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d85 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d85 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d85 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d86 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d86 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d7b mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d7b mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f40 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d86 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003030 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003038 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f48 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d86 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f48 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003038 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d86 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003038 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d86 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d86 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d86 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d86 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d86 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f48 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d86 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d87 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d87 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d87 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d88 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d88 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d88 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d89 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d89 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d89 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8a 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8b 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8c 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8d 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8e 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8f 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d90 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d90 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d90 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d91 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d91 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d86 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d86 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f48 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d91 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003038 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003040 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f50 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d91 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f50 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003040 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d91 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003040 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d91 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d91 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d91 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d91 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d91 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f50 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d91 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d92 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d92 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d92 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d93 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d93 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d93 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d94 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d94 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d94 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d95 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d95 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d95 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d96 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d96 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d96 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d97 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d97 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d97 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d98 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d98 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d98 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d99 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d99 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d99 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9a 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9b 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d91 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d91 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f50 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022d9c 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003040 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003048 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f58 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022d9c +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f58 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003048 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022d9c +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003048 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022d9c +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022d9c +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d9c +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d9c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d9c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f58 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9c 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9d 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9e 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9f 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da0 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da1 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da2 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da3 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da4 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da5 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da6 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d9c mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d9c mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f58 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022da7 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003048 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003050 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f60 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022da7 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f60 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003050 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022da7 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003050 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022da7 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022da7 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022da7 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022da7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022da7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f60 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da7 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da8 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da9 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022daa +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022daa +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daa 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dab +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dab +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dab 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dac +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dac +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dac 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dad +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dad +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dad 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dae +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dae +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dae 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022daf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022daf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daf 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db0 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db1 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022da7 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022da7 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f60 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022db2 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003050 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003058 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f68 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022db2 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003058 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022db2 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003058 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022db2 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022db2 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022db2 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022db2 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022db2 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f68 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db2 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db3 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db4 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db5 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db6 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db7 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db8 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db9 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dba +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dba +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dba 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbb 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbc 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022db2 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022db2 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f68 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dbd 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003058 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003060 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f70 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022dbd +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f70 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003060 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022dbd +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003060 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022dbd +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dbd +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dbd +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dbd +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dbd +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f70 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbd 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbe +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbe +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbe 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbf 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc0 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc1 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc2 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc3 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc4 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc5 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc6 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc7 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dbd mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dbd mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f70 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dc8 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003060 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003068 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f78 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022dc8 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f78 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003068 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022dc8 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003068 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022dc8 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dc8 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dc8 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dc8 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dc8 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f78 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc8 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc9 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dca +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dca +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dca 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dcb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dcb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcb 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dcc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dcc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcc 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dcd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dcd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcd 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dce +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dce +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dce 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dcf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dcf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcf 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd0 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd1 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd2 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dc8 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dc8 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f78 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dd3 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003068 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003070 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f80 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022dd3 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f80 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003070 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022dd3 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003070 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022dd3 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dd3 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dd3 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dd3 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dd3 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f80 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd3 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd4 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd5 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd6 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd7 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd8 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd9 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dda +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dda +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dda 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ddb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ddb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddb 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ddc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ddc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddc 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ddd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ddd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddd 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dde +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dde +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dd3 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dd3 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f80 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dde mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dde 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dde mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003070 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003078 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f88 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022dde +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f88 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003078 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022dde +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003078 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022dde +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dde +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dde +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dde +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dde +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f88 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dde 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ddf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ddf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddf 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de0 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de1 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de2 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de3 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de4 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de5 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de6 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de7 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de8 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dde mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dde mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f88 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022de9 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003078 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003080 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f90 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022de9 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f90 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003080 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022de9 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003080 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022de9 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022de9 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022de9 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022de9 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022de9 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f90 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de9 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dea +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dea +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dea 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022deb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022deb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022deb 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dec +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dec +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dec 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ded +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ded +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ded 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dee +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dee +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dee 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022def +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022def +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022def mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022def 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022def mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df0 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df1 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df2 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df3 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022de9 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022de9 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f90 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022df4 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003080 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003088 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002f98 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022df4 +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f98 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003088 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022df4 +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003088 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022df4 +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022df4 +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022df4 +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022df4 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022df4 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f98 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df4 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df5 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df6 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df7 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df8 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df9 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfa +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfa +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfa 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfb 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfc 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfd 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfe +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfe +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfe 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dff +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dff +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022df4 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022df4 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f98 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022dff mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022dff 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022dff mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003088 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003090 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002fa0 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022dff +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001cf8 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf8 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fa0 +core 0: 0x0000000080001cfc (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cfc (0x00043603) x12 0x0000000000000000 mem 0x0000000080003090 +core 0: 0x0000000080001d00 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001d00 (0x00048513) x10 0x0000000080022dff +core 0: 0x0000000080001d04 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d04 (0x00001597) x11 0x0000000080002d04 +core 0: 0x0000000080001d08 (0xda458593) addi a1, a1, -604 +core 0: 3 0x0000000080001d08 (0xda458593) x11 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d0c (0xd35ff0ef) x1 0x0000000080001d10 +core 0: >>>> sprintf +core 0: 0x0000000080001a40 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a40 (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a44 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a44 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a48 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a48 (0x02813023) mem 0x0000000080022c50 0x0000000080003090 +core 0: 0x0000000080001a4c (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a4c (0x00a13423) mem 0x0000000080022c38 0x0000000080022dff +core 0: 0x0000000080001a50 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a50 (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a54 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a54 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a58 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a58 (0x00050413) x8 0x0000000080022dff +core 0: 0x0000000080001a5c (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a5c (0x00058613) x12 0x0000000080002aa8 +core 0: 0x0000000080001a60 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a60 (0x00000517) x10 0x0000000080001a60 +core 0: 0x0000000080001a64 (0x97c50513) addi a0, a0, -1668 +core 0: 3 0x0000000080001a64 (0x97c50513) x10 0x00000000800013dc +core 0: 0x0000000080001a68 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a68 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a6c (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a6c (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a70 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a70 (0x02113423) mem 0x0000000080022c58 0x0000000080001d10 +core 0: 0x0000000080001a74 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a74 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dff +core 0: 0x0000000080001a78 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a78 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a7c (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a7c (0x05013823) mem 0x0000000080022c80 0x0000000080002ab8 +core 0: 0x0000000080001a80 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a80 (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a84 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a84 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a88 (0xd78ff0ef) jal pc - 0xa88 +core 0: 3 0x0000000080001a88 (0xd78ff0ef) x1 0x0000000080001a8c +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dff +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dff +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002fa0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a8c +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x0000000080003098 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002aa8 +core 0: 0x000000008000103c (0x00068a93) mv s5, a3 +core 0: 3 0x000000008000103c (0x00068a93) x21 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b93) li s7, 85 +core 0: 3 0x0000000080001048 (0x05500b93) x23 0x0000000000000055 +core 0: 0x000000008000104c (0x00001b17) auipc s6, 0x1 +core 0: 3 0x000000008000104c (0x00001b17) x22 0x000000008000204c +core 0: 0x0000000080001050 (0x67cb0b13) addi s6, s6, 1660 +core 0: 3 0x0000000080001050 (0x67cb0b13) x22 0x00000000800026c8 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aa8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002aa9 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aa9 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aa9 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaa +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002808 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebdc mem 0x0000000080002808 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x00000000800012a4 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a4 (0x000abc03) ld s8, 0(s5) +core 0: 3 0x00000000800012a4 (0x000abc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a8 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a8 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012ac (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012ac (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x0ef757b3) czero.eqz a5, a4, a5 +core 0: 3 0x00000000800012b4 (0x0ef757b3) x15 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008a8a93) addi s5, s5, 8 +core 0: 3 0x00000000800012b8 (0x008a8a93) x21 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4acc0c13) addi s8, s8, 1196 +core 0: 3 0x0000000080001378 (0x4acc0c13) x24 0x0000000080002820 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40786e3) beqz a5, pc - 180 +core 0: 3 0x0000000080001380 (0xf40786e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dff 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e00 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e00 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002821 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002821 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e00 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e01 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e01 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002822 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002822 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e01 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e02 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e02 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002823 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002823 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e02 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e03 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e03 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002824 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002824 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e03 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e04 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e04 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002825 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002825 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e04 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e05 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e05 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002826 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002826 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aaa +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aab +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e05 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e06 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e06 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002aab +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aac +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e06 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e07 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e07 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002aac +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002aad +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e07 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e08 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e08 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002aad +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002aae +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002aae +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002aae +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002aaf +core 0: 0x0000000080001098 (0x06fbe463) bltu s7, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fbe463) +core 0: 0x000000008000109c (0x2167c7b3) sh2add a5, a5, s6 +core 0: 3 0x000000008000109c (0x2167c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec80 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x016787b3) add a5, a5, s6 +core 0: 3 0x00000000800010a4 (0x016787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf3dff06f) j pc - 0xc4 +core 0: 3 0x000000008000134c (0xf3dff06f) +core 0: 0x0000000080001288 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001288 (0x00100713) x14 0x0000000000000001 +core 0: 0x000000008000128c (0x008a8793) addi a5, s5, 8 +core 0: 3 0x000000008000128c (0x008a8793) x15 0x0000000080022c70 +core 0: 0x0000000080001290 (0xf2c744e3) blt a4, a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf2c744e3) +core 0: 0x0000000080001294 (0xf20612e3) bnez a2, pc - 220 +core 0: 3 0x0000000080001294 (0xf20612e3) +core 0: 0x0000000080001298 (0x000ae703) lwu a4, 0(s5) +core 0: 3 0x0000000080001298 (0x000ae703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x000000008000129c (0x00078a93) mv s5, a5 +core 0: 3 0x000000008000129c (0x00078a93) x21 0x0000000080022c70 +core 0: 0x00000000800012a0 (0xf21ff06f) j pc - 0xe0 +core 0: 3 0x00000000800012a0 (0xf21ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c4d33) sh2add s10, s8, sp +core 0: 3 0x0000000080001214 (0x202c4d33) x26 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x02700993) li s3, 39 +core 0: 3 0x0000000080001220 (0x02700993) x19 0x0000000000000027 +core 0: 0x0000000080001224 (0x000d2503) lw a0, 0(s10) +core 0: 3 0x0000000080001224 (0x000d2503) x10 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001228 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001228 (0x00090593) x11 0x0000000080022c38 +core 0: 0x000000008000122c (0xffcd0d13) addi s10, s10, -4 +core 0: 3 0x000000008000122c (0xffcd0d13) x26 0x0000000080022acc +core 0: 0x0000000080001230 (0x00ac37b3) sltu a5, s8, a0 +core 0: 3 0x0000000080001230 (0x00ac37b3) x15 0x0000000000000000 +core 0: 0x0000000080001234 (0x0ef9d7b3) czero.eqz a5, s3, a5 +core 0: 3 0x0000000080001234 (0x0ef9d7b3) x15 0x0000000000000000 +core 0: 0x0000000080001238 (0x03078793) addi a5, a5, 48 +core 0: 3 0x0000000080001238 (0x03078793) x15 0x0000000000000030 +core 0: 0x000000008000123c (0x00f5053b) addw a0, a0, a5 +core 0: 3 0x000000008000123c (0x00f5053b) x10 0x0000000000000030 +core 0: 0x0000000080001240 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001240 (0x000480e7) x1 0x0000000080001244 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e08 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e09 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e09 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001244 (0xff9d10e3) bne s10, s9, pc - 32 +core 0: 3 0x0000000080001244 (0xff9d10e3) +core 0: 0x0000000080001248 (0xe21ff06f) j pc - 0x1e0 +core 0: 3 0x0000000080001248 (0xe21ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002aaf +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab0 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e09 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e0a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a8c mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dff mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dff mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x0000000080003098 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a8c (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813783) x15 0x0000000080022e0a mem 0x0000000080022c38 +core 0: 0x0000000080001a90 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a90 (0x00078023) mem 0x0000000080022e0a 0x00 +core 0: 0x0000000080001a94 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a94 (0x00813503) x10 0x0000000080022e0a mem 0x0000000080022c38 +core 0: 0x0000000080001a98 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a98 (0x02813083) x1 0x0000000080001d10 mem 0x0000000080022c58 +core 0: 0x0000000080001a9c (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a9c (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001aa0 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001aa0 (0x02013403) x8 0x0000000080003090 mem 0x0000000080022c50 +core 0: 0x0000000080001aa4 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa4 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa8 (0x00008067) ret +core 0: 3 0x0000000080001aa8 (0x00008067) +core 0: 0x0000000080001d10 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d10 (0x00840413) x8 0x0000000080003098 +core 0: 0x0000000080001d14 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d14 (0x00890913) x18 0x0000000080002fa8 +core 0: 0x0000000080001d18 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d18 (0x00a484b3) x9 0x0000000080022e0a +core 0: 0x0000000080001d1c (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d1c (0xfd341ee3) +core 0: 0x0000000080001d20 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d20 (0x009a0663) +core 0: 0x0000000080001d24 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d24 (0x000a0513) x10 0x0000000080022cc0 +core 0: 0x0000000080001d28 (0xbedff0ef) jal pc - 0x414 +core 0: 3 0x0000000080001d28 (0xbedff0ef) x1 0x0000000080001d2c +core 0: >>>> printstr +core 0: 0x0000000080001914 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x0000000080001914 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022cc0 +core 0: 0x0000000080001918 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001918 (0xf9010113) x2 0x0000000080022c20 +core 0: 0x000000008000191c (0x03f10693) addi a3, sp, 63 +core 0: 3 0x000000008000191c (0x03f10693) x13 0x0000000080022c5f +core 0: 0x0000000080001920 (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x0000000080001920 (0xfc06f693) x13 0x0000000080022c40 +core 0: 0x0000000080001924 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001924 (0x00078c63) +core 0: 0x0000000080001928 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001928 (0x00050793) x15 0x0000000080022cc0 +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022cc1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022cc2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cc3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cc4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cc5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cc6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cc7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cc8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cc9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022cca +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cca +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ccb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ccb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ccc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ccc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ccd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ccd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cce +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cce +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ccf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ccf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cd0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cd1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cd2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cd3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cd4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022cd5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022cd6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022cd7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022cd8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cd9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cda +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cda +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cdb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cdb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cdc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cdc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cdd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cdd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cde +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cde +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cdf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cdf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ce0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ce1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ce2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ce3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ce4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ce5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ce6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ce7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ce8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ce9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cea +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cea +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ceb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ceb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022cec +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cec +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ced +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ced +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022cee +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cee +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cef +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cef +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cf0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cf1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cf2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cf3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cf4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cf5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022cf6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022cf7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022cf8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022cf9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cfa +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfa +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cfb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cfc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cfd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cfe +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfe +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cff +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cff +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d00 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d00 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d01 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d01 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d02 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d02 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d03 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d03 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d04 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d04 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d05 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d05 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d06 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d06 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d07 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d07 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d08 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d08 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d09 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d09 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d0a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d0b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d0c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d0d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d0e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d0f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d10 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d10 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d11 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d11 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d12 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d12 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d13 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d13 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d14 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d14 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d15 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d15 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d16 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d16 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d17 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d17 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d18 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d18 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d19 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d19 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d1a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d1b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d1c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d1d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d1e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d1f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d20 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d20 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d21 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d21 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d22 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d22 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d23 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d23 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d24 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d24 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d25 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d25 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d26 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d26 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d27 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d27 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d28 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d28 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d29 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d29 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d2a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d2b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d2c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d2d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d2e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d2f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d30 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d30 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d31 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d31 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d32 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d32 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d33 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d33 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d34 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d34 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d35 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d35 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d36 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d36 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d37 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d37 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d38 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d38 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d39 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d39 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d3a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d3b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d3c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d3d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d3e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d3f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d40 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d40 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d41 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d41 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d42 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d42 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d43 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d43 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d44 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d44 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d45 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d45 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d46 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d46 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d47 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d47 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d48 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d48 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d49 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d49 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d4a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d4b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d4c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d4d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d4e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d4f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d50 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d50 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d51 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d51 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d52 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d52 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d53 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d53 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d54 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d54 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d55 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d55 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d56 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d56 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d57 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d57 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d58 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d58 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d59 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d59 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d5a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d5b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d5c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d5d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d5e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d5f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d60 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d60 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d61 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d61 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d62 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d62 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d63 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d63 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d64 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d64 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d65 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d65 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d66 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d66 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d67 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d67 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d68 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d68 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d69 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d69 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d6a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d6b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d6c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d6d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d6e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d6f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d70 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d70 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d71 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d71 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d72 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d72 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d73 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d73 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d74 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d74 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d75 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d75 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d76 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d76 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d77 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d77 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d78 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d78 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d79 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d79 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d7a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d7b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d7c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d7d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d7e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d7f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d80 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d80 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d81 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d81 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d82 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d82 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d83 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d83 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d84 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d84 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d85 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d85 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d86 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d86 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d87 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d87 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d88 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d88 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d89 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d89 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d8a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d8b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d8c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d8d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d8e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d8f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d90 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d90 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d91 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d91 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d92 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d92 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d93 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d93 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d94 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d94 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d95 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d95 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d96 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d96 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d97 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d97 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d98 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d98 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d99 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d99 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d9a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d9b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d9c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d9d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d9e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d9f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022da0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022da1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022da2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022da3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022da4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022da5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022da6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022da7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022da8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022da9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022daa +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022daa +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dab +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dab +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dac +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dac +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dad +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dad +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dae +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dae +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022daf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022daf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022db0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022db1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022db2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022db3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022db4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022db5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022db6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022db7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022db8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022db9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dba +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dba +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dbb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dbc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dbd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dbe +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbe +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dbf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dc0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dc1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dc2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dc3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dc4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dc5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dc6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dc7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dc8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dc9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dca +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dca +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dcb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dcb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dcc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dcc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dcd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dcd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dce +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dce +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dcf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dcf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dd0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dd1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dd2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dd3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dd4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dd5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dd6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dd7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dd8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dd9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dda +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dda +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ddb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ddb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ddc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ddc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ddd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ddd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dde +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dde +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ddf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ddf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022de0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022de1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022de2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022de3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022de4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022de5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022de6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022de7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022de8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022de9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dea +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dea +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022deb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022deb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dec +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dec +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ded +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ded +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dee +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dee +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022def +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022def +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022df0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022df1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022df2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022df3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022df4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022df5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022df6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022df7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022df8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022df9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dfa +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfa +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dfb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dfc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dfd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dfe +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfe +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dff +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dff +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e00 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e00 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e01 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e01 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e02 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e02 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e03 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e03 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e04 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e04 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e05 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e05 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e06 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e06 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e07 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e07 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e08 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e08 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e09 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e09 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000000 mem 0x0000000080022e0a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x0000000080001938 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x0000000080001938 (0x40a787b3) x15 0x000000000000014a +core 0: 0x000000008000193c (0x04000713) li a4, 64 +core 0: 3 0x000000008000193c (0x04000713) x14 0x0000000000000040 +core 0: 0x0000000080001940 (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x0000000080001940 (0x00e6b023) mem 0x0000000080022c40 0x0000000000000040 +core 0: 0x0000000080001944 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001944 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001948 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x0000000080001948 (0x00e6b423) mem 0x0000000080022c48 0x0000000000000001 +core 0: 0x000000008000194c (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x000000008000194c (0x00a6b823) mem 0x0000000080022c50 0x0000000080022cc0 +core 0: 0x0000000080001950 (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x0000000080001950 (0x00f6bc23) mem 0x0000000080022c58 0x000000000000014a +core 0: 0x0000000080001954 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001954 (0x0330000f) +core 0: 0x0000000080001958 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001958 (0xbfffe717) x14 0x000000003ffff958 +core 0: 0x000000008000195c (0x6e870713) addi a4, a4, 1768 +core 0: 3 0x000000008000195c (0x6e870713) x14 0x0000000040000040 +core 0: 0x0000000080001960 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x0000000080001960 (0xbfffe797) x15 0x000000003ffff960 +core 0: 0x0000000080001964 (0x6ad7b023) sd a3, 1696(a5) +core 0: 3 0x0000000080001964 (0x6ad7b023) mem 0x0000000040000000 0x0000000080022c40 +core 0: 0x0000000080001968 (0x00073783) ld a5, 0(a4) +core 0: 3 0x0000000080001968 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x000000008000196c (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x000000008000196c (0xfe078ee3) +core 0: 0x0000000080001970 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x0000000080001970 (0xbfffe797) x15 0x000000003ffff970 +core 0: 0x0000000080001974 (0x6c07b823) sd zero, 1744(a5) +core 0: 3 0x0000000080001974 (0x6c07b823) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x0000000080001978 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001978 (0x0330000f) +core 0: 0x000000008000197c (0x0006b783) ld a5, 0(a3) +core 0: 3 0x000000008000197c (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022c40 +core 0: 0x0000000080001980 (0x07010113) addi sp, sp, 112 +core 0: 3 0x0000000080001980 (0x07010113) x2 0x0000000080022c90 +core 0: 0x0000000080001984 (0x00008067) ret +core 0: 3 0x0000000080001984 (0x00008067) +core 0: 0x0000000080001d2c (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d2c (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d30 (0xba1ff0ef) jal pc - 0x460 +core 0: 3 0x0000000080001d30 (0xba1ff0ef) x1 0x0000000080001d34 +core 0: >>>> tohost_exit +core 0: 0x00000000800018d0 (0x00151793) slli a5, a0, 1 +core 0: 3 0x00000000800018d0 (0x00151793) x15 0x0000000000000000 +core 0: 0x00000000800018d4 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x00000000800018d4 (0x0017e793) x15 0x0000000000000001 +core 0: 0x00000000800018d8 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x00000000800018d8 (0xbfffe717) x14 0x000000003ffff8d8 +core 0: 0x00000000800018dc (0x72f73423) sd a5, 1832(a4) +core 0: 3 0x00000000800018dc (0x72f73423) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x00000000800018e0 (0x0000006f) j pc + 0x0 +core 0: 3 0x00000000800018e0 (0x0000006f) diff --git a/traces/with_zfa.txt b/traces/with_zfa.txt new file mode 100644 index 0000000..e058c7b --- /dev/null +++ b/traces/with_zfa.txt @@ -0,0 +1,22277 @@ +core 0: 0x0000000000000100 (0x0010041b) addiw s0, zero, 1 +core 0: 3 0x0000000000000100 (0x0010041b) x8 0x0000000000000001 +core 0: 0x0000000000000104 (0x01f41413) slli s0, s0, 31 +core 0: 3 0x0000000000000104 (0x01f41413) x8 0x0000000080000000 +core 0: 0x0000000000000108 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000000000108 (0xf1402573) x10 0x0000000000000000 +core 0: 0x000000000000010c (0x18000593) li a1, 384 +core 0: 3 0x000000000000010c (0x18000593) x11 0x0000000000000180 +core 0: 0x0000000000000110 (0x00040067) jr s0 +core 0: 3 0x0000000000000110 (0x00040067) +core 0: >>>> _start +core 0: 0x0000000080000000 (0x00000093) li ra, 0 +core 0: 3 0x0000000080000000 (0x00000093) x1 0x0000000000000000 +core 0: 0x0000000080000004 (0x00000113) li sp, 0 +core 0: 3 0x0000000080000004 (0x00000113) x2 0x0000000000000000 +core 0: 0x0000000080000008 (0x00000193) li gp, 0 +core 0: 3 0x0000000080000008 (0x00000193) x3 0x0000000000000000 +core 0: 0x000000008000000c (0x00000213) li tp, 0 +core 0: 3 0x000000008000000c (0x00000213) x4 0x0000000000000000 +core 0: 0x0000000080000010 (0x00000293) li t0, 0 +core 0: 3 0x0000000080000010 (0x00000293) x5 0x0000000000000000 +core 0: 0x0000000080000014 (0x00000313) li t1, 0 +core 0: 3 0x0000000080000014 (0x00000313) x6 0x0000000000000000 +core 0: 0x0000000080000018 (0x00000393) li t2, 0 +core 0: 3 0x0000000080000018 (0x00000393) x7 0x0000000000000000 +core 0: 0x000000008000001c (0x00000413) li s0, 0 +core 0: 3 0x000000008000001c (0x00000413) x8 0x0000000000000000 +core 0: 0x0000000080000020 (0x00000493) li s1, 0 +core 0: 3 0x0000000080000020 (0x00000493) x9 0x0000000000000000 +core 0: 0x0000000080000024 (0x00000513) li a0, 0 +core 0: 3 0x0000000080000024 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080000028 (0x00000593) li a1, 0 +core 0: 3 0x0000000080000028 (0x00000593) x11 0x0000000000000000 +core 0: 0x000000008000002c (0x00000613) li a2, 0 +core 0: 3 0x000000008000002c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080000030 (0x00000693) li a3, 0 +core 0: 3 0x0000000080000030 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080000034 (0x00000713) li a4, 0 +core 0: 3 0x0000000080000034 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080000038 (0x00000793) li a5, 0 +core 0: 3 0x0000000080000038 (0x00000793) x15 0x0000000000000000 +core 0: 0x000000008000003c (0x00000813) li a6, 0 +core 0: 3 0x000000008000003c (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080000040 (0x00000893) li a7, 0 +core 0: 3 0x0000000080000040 (0x00000893) x17 0x0000000000000000 +core 0: 0x0000000080000044 (0x00000913) li s2, 0 +core 0: 3 0x0000000080000044 (0x00000913) x18 0x0000000000000000 +core 0: 0x0000000080000048 (0x00000993) li s3, 0 +core 0: 3 0x0000000080000048 (0x00000993) x19 0x0000000000000000 +core 0: 0x000000008000004c (0x00000a13) li s4, 0 +core 0: 3 0x000000008000004c (0x00000a13) x20 0x0000000000000000 +core 0: 0x0000000080000050 (0x00000a93) li s5, 0 +core 0: 3 0x0000000080000050 (0x00000a93) x21 0x0000000000000000 +core 0: 0x0000000080000054 (0x00000b13) li s6, 0 +core 0: 3 0x0000000080000054 (0x00000b13) x22 0x0000000000000000 +core 0: 0x0000000080000058 (0x00000b93) li s7, 0 +core 0: 3 0x0000000080000058 (0x00000b93) x23 0x0000000000000000 +core 0: 0x000000008000005c (0x00000c13) li s8, 0 +core 0: 3 0x000000008000005c (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080000060 (0x00000c93) li s9, 0 +core 0: 3 0x0000000080000060 (0x00000c93) x25 0x0000000000000000 +core 0: 0x0000000080000064 (0x00000d13) li s10, 0 +core 0: 3 0x0000000080000064 (0x00000d13) x26 0x0000000000000000 +core 0: 0x0000000080000068 (0x00000d93) li s11, 0 +core 0: 3 0x0000000080000068 (0x00000d93) x27 0x0000000000000000 +core 0: 0x000000008000006c (0x00000e13) li t3, 0 +core 0: 3 0x000000008000006c (0x00000e13) x28 0x0000000000000000 +core 0: 0x0000000080000070 (0x00000e93) li t4, 0 +core 0: 3 0x0000000080000070 (0x00000e93) x29 0x0000000000000000 +core 0: 0x0000000080000074 (0x00000f13) li t5, 0 +core 0: 3 0x0000000080000074 (0x00000f13) x30 0x0000000000000000 +core 0: 0x0000000080000078 (0x00000f93) li t6, 0 +core 0: 3 0x0000000080000078 (0x00000f93) x31 0x0000000000000000 +core 0: 0x000000008000007c (0x0001e2b7) lui t0, 0x1e +core 0: 3 0x000000008000007c (0x0001e2b7) x5 0x000000000001e000 +core 0: 0x0000000080000080 (0x6002829b) addiw t0, t0, 1536 +core 0: 3 0x0000000080000080 (0x6002829b) x5 0x000000000001e600 +core 0: 0x0000000080000084 (0x3002a073) csrs mstatus, t0 +core 0: 3 0x0000000080000084 (0x3002a073) c768_mstatus 0x8000000a00006000 +core 0: 0x0000000080000088 (0x00100293) li t0, 1 +core 0: 3 0x0000000080000088 (0x00100293) x5 0x0000000000000001 +core 0: 0x000000008000008c (0x01f29293) slli t0, t0, 31 +core 0: 3 0x000000008000008c (0x01f29293) x5 0x0000000080000000 +core 0: 0x0000000080000090 (0x0002da63) bgez t0, pc + 20 +core 0: 3 0x0000000080000090 (0x0002da63) +core 0: 0x00000000800000a4 (0x00000297) auipc t0, 0x0 +core 0: 3 0x00000000800000a4 (0x00000297) x5 0x00000000800000a4 +core 0: 0x00000000800000a8 (0x09028293) addi t0, t0, 144 +core 0: 3 0x00000000800000a8 (0x09028293) x5 0x0000000080000134 +core 0: 0x00000000800000ac (0x30529073) csrw mtvec, t0 +core 0: 3 0x00000000800000ac (0x30529073) c773_mtvec 0x0000000080000134 +core 0: 0x00000000800000b0 (0x00301073) csrw fcsr, zero +core 0: 3 0x00000000800000b0 (0x00301073) c1_fflags 0x0000000000000000 c2_frm 0x0000000000000000 +core 0: 0x00000000800000b4 (0xf0000053) fmv.w.x ft0, zero +core 0: 3 0x00000000800000b4 (0xf0000053) f0 0xffffffff00000000 +core 0: 0x00000000800000b8 (0xf00000d3) fmv.w.x ft1, zero +core 0: 3 0x00000000800000b8 (0xf00000d3) f1 0xffffffff00000000 +core 0: 0x00000000800000bc (0xf0000153) fmv.w.x ft2, zero +core 0: 3 0x00000000800000bc (0xf0000153) f2 0xffffffff00000000 +core 0: 0x00000000800000c0 (0xf00001d3) fmv.w.x ft3, zero +core 0: 3 0x00000000800000c0 (0xf00001d3) f3 0xffffffff00000000 +core 0: 0x00000000800000c4 (0xf0000253) fmv.w.x ft4, zero +core 0: 3 0x00000000800000c4 (0xf0000253) f4 0xffffffff00000000 +core 0: 0x00000000800000c8 (0xf00002d3) fmv.w.x ft5, zero +core 0: 3 0x00000000800000c8 (0xf00002d3) f5 0xffffffff00000000 +core 0: 0x00000000800000cc (0xf0000353) fmv.w.x ft6, zero +core 0: 3 0x00000000800000cc (0xf0000353) f6 0xffffffff00000000 +core 0: 0x00000000800000d0 (0xf00003d3) fmv.w.x ft7, zero +core 0: 3 0x00000000800000d0 (0xf00003d3) f7 0xffffffff00000000 +core 0: 0x00000000800000d4 (0xf0000453) fmv.w.x fs0, zero +core 0: 3 0x00000000800000d4 (0xf0000453) f8 0xffffffff00000000 +core 0: 0x00000000800000d8 (0xf00004d3) fmv.w.x fs1, zero +core 0: 3 0x00000000800000d8 (0xf00004d3) f9 0xffffffff00000000 +core 0: 0x00000000800000dc (0xf0000553) fmv.w.x fa0, zero +core 0: 3 0x00000000800000dc (0xf0000553) f10 0xffffffff00000000 +core 0: 0x00000000800000e0 (0xf00005d3) fmv.w.x fa1, zero +core 0: 3 0x00000000800000e0 (0xf00005d3) f11 0xffffffff00000000 +core 0: 0x00000000800000e4 (0xf0000653) fmv.w.x fa2, zero +core 0: 3 0x00000000800000e4 (0xf0000653) f12 0xffffffff00000000 +core 0: 0x00000000800000e8 (0xf00006d3) fmv.w.x fa3, zero +core 0: 3 0x00000000800000e8 (0xf00006d3) f13 0xffffffff00000000 +core 0: 0x00000000800000ec (0xf0000753) fmv.w.x fa4, zero +core 0: 3 0x00000000800000ec (0xf0000753) f14 0xffffffff00000000 +core 0: 0x00000000800000f0 (0xf00007d3) fmv.w.x fa5, zero +core 0: 3 0x00000000800000f0 (0xf00007d3) f15 0xffffffff00000000 +core 0: 0x00000000800000f4 (0xf0000853) fmv.w.x fa6, zero +core 0: 3 0x00000000800000f4 (0xf0000853) f16 0xffffffff00000000 +core 0: 0x00000000800000f8 (0xf00008d3) fmv.w.x fa7, zero +core 0: 3 0x00000000800000f8 (0xf00008d3) f17 0xffffffff00000000 +core 0: 0x00000000800000fc (0xf0000953) fmv.w.x fs2, zero +core 0: 3 0x00000000800000fc (0xf0000953) f18 0xffffffff00000000 +core 0: 0x0000000080000100 (0xf00009d3) fmv.w.x fs3, zero +core 0: 3 0x0000000080000100 (0xf00009d3) f19 0xffffffff00000000 +core 0: 0x0000000080000104 (0xf0000a53) fmv.w.x fs4, zero +core 0: 3 0x0000000080000104 (0xf0000a53) f20 0xffffffff00000000 +core 0: 0x0000000080000108 (0xf0000ad3) fmv.w.x fs5, zero +core 0: 3 0x0000000080000108 (0xf0000ad3) f21 0xffffffff00000000 +core 0: 0x000000008000010c (0xf0000b53) fmv.w.x fs6, zero +core 0: 3 0x000000008000010c (0xf0000b53) f22 0xffffffff00000000 +core 0: 0x0000000080000110 (0xf0000bd3) fmv.w.x fs7, zero +core 0: 3 0x0000000080000110 (0xf0000bd3) f23 0xffffffff00000000 +core 0: 0x0000000080000114 (0xf0000c53) fmv.w.x fs8, zero +core 0: 3 0x0000000080000114 (0xf0000c53) f24 0xffffffff00000000 +core 0: 0x0000000080000118 (0xf0000cd3) fmv.w.x fs9, zero +core 0: 3 0x0000000080000118 (0xf0000cd3) f25 0xffffffff00000000 +core 0: 0x000000008000011c (0xf0000d53) fmv.w.x fs10, zero +core 0: 3 0x000000008000011c (0xf0000d53) f26 0xffffffff00000000 +core 0: 0x0000000080000120 (0xf0000dd3) fmv.w.x fs11, zero +core 0: 3 0x0000000080000120 (0xf0000dd3) f27 0xffffffff00000000 +core 0: 0x0000000080000124 (0xf0000e53) fmv.w.x ft8, zero +core 0: 3 0x0000000080000124 (0xf0000e53) f28 0xffffffff00000000 +core 0: 0x0000000080000128 (0xf0000ed3) fmv.w.x ft9, zero +core 0: 3 0x0000000080000128 (0xf0000ed3) f29 0xffffffff00000000 +core 0: 0x000000008000012c (0xf0000f53) fmv.w.x ft10, zero +core 0: 3 0x000000008000012c (0xf0000f53) f30 0xffffffff00000000 +core 0: 0x0000000080000130 (0xf0000fd3) fmv.w.x ft11, zero +core 0: 3 0x0000000080000130 (0xf0000fd3) f31 0xffffffff00000000 +core 0: 0x0000000080000134 (0x00000297) auipc t0, 0x0 +core 0: 3 0x0000000080000134 (0x00000297) x5 0x0000000080000134 +core 0: 0x0000000080000138 (0x04428293) addi t0, t0, 68 +core 0: 3 0x0000000080000138 (0x04428293) x5 0x0000000080000178 +core 0: 0x000000008000013c (0x30529073) csrw mtvec, t0 +core 0: 3 0x000000008000013c (0x30529073) c773_mtvec 0x0000000080000178 +core 0: 0x0000000080000140 (0x00003197) auipc gp, 0x3 +core 0: 3 0x0000000080000140 (0x00003197) x3 0x0000000080003140 +core 0: 0x0000000080000144 (0x86818193) addi gp, gp, -1944 +core 0: 3 0x0000000080000144 (0x86818193) x3 0x00000000800029a8 +core 0: 0x0000000080000148 (0x00003217) auipc tp, 0x3 +core 0: 3 0x0000000080000148 (0x00003217) x4 0x0000000080003148 +core 0: 0x000000008000014c (0x83720213) addi tp, tp, -1993 +core 0: 3 0x000000008000014c (0x83720213) x4 0x000000008000297f +core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002940 +core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 +core 0: 0x0000000080000158 (0x00100593) li a1, 1 +core 0: 3 0x0000000080000158 (0x00100593) x11 0x0000000000000001 +core 0: 0x000000008000015c (0x00b57063) bgeu a0, a1, pc + 0 +core 0: 3 0x000000008000015c (0x00b57063) +core 0: 0x0000000080000160 (0x00150113) addi sp, a0, 1 +core 0: 3 0x0000000080000160 (0x00150113) x2 0x0000000000000001 +core 0: 0x0000000080000164 (0x01111113) slli sp, sp, 17 +core 0: 3 0x0000000080000164 (0x01111113) x2 0x0000000000020000 +core 0: 0x0000000080000168 (0x00410133) add sp, sp, tp +core 0: 3 0x0000000080000168 (0x00410133) x2 0x0000000080022940 +core 0: 0x000000008000016c (0x01151613) slli a2, a0, 17 +core 0: 3 0x000000008000016c (0x01151613) x12 0x0000000000000000 +core 0: 0x0000000080000170 (0x00c20233) add tp, tp, a2 +core 0: 3 0x0000000080000170 (0x00c20233) x4 0x0000000080002940 +core 0: 0x0000000080000174 (0x2690106f) j pc + 0x1a68 +core 0: 3 0x0000000080000174 (0x2690106f) +core 0: >>>> _init +core 0: 0x0000000080001bdc (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001bdc (0xbd010113) x2 0x0000000080022510 +core 0: 0x0000000080001be0 (0xf8018613) addi a2, gp, -128 +core 0: 3 0x0000000080001be0 (0xf8018613) x12 0x0000000080002928 +core 0: 0x0000000080001be4 (0xf8018793) addi a5, gp, -128 +core 0: 3 0x0000000080001be4 (0xf8018793) x15 0x0000000080002928 +core 0: 0x0000000080001be8 (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001be8 (0x41413023) mem 0x0000000080022910 0x0000000000000000 +core 0: 0x0000000080001bec (0x40f60833) sub a6, a2, a5 +core 0: 3 0x0000000080001bec (0x40f60833) x16 0x0000000000000000 +core 0: 0x0000000080001bf0 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001bf0 (0x03f10a13) x20 0x000000008002254f +core 0: 0x0000000080001bf4 (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001bf4 (0x42813023) mem 0x0000000080022930 0x0000000000000000 +core 0: 0x0000000080001bf8 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001bf8 (0x40913c23) mem 0x0000000080022928 0x0000000000000000 +core 0: 0x0000000080001bfc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001bfc (0x00050413) x8 0x0000000000000000 +core 0: 0x0000000080001c00 (0x00058493) mv s1, a1 +core 0: 3 0x0000000080001c00 (0x00058493) x9 0x0000000000000001 +core 0: 0x0000000080001c04 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c04 (0x42113423) mem 0x0000000080022938 0x0000000000000000 +core 0: 0x0000000080001c08 (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c08 (0x41213823) mem 0x0000000080022920 0x0000000000000000 +core 0: 0x0000000080001c0c (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c0c (0x41313423) mem 0x0000000080022918 0x0000000000000000 +core 0: 0x0000000080001c10 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c10 (0x3f513c23) mem 0x0000000080022908 0x0000000000000000 +core 0: 0x0000000080001c14 (0x00080593) mv a1, a6 +core 0: 3 0x0000000080001c14 (0x00080593) x11 0x0000000000000000 +core 0: 0x0000000080001c18 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c18 (0xfc0a7a13) x20 0x0000000080022540 +core 0: 0x0000000080001c1c (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c1c (0x00020513) x10 0x0000000080002940 +core 0: 0x0000000080001c20 (0x00020693) mv a3, tp +core 0: 3 0x0000000080001c20 (0x00020693) x13 0x0000000080002940 +core 0: 0x0000000080001c24 (0x0c05f757) vsetvli a4, a1, e8, m1, ta, ma +core 0: 3 0x0000000080001c24 (0x0c05f757) x14 0x0000000000000000 +core 0: 0x0000000080001c28 (0x02078087) vle8.v v1, (a5) +core 0: 3 0x0000000080001c28 (0x02078087) mem 0x0000000000000000 +core 0: 0x0000000080001c2c (0x40e585b3) sub a1, a1, a4 +core 0: 3 0x0000000080001c2c (0x40e585b3) x11 0x0000000000000000 +core 0: 0x0000000080001c30 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c30 (0x00e787b3) x15 0x0000000080002928 +core 0: 0x0000000080001c34 (0x020680a7) vse8.v v1, (a3) +core 0: 3 0x0000000080001c34 (0x020680a7) mem 0x0000000000000000 0x00 +core 0: 0x0000000080001c38 (0x00e686b3) add a3, a3, a4 +core 0: 3 0x0000000080001c38 (0x00e686b3) x13 0x0000000080002940 +core 0: 0x0000000080001c3c (0xfe0594e3) bnez a1, pc - 24 +core 0: 3 0x0000000080001c3c (0xfe0594e3) +core 0: 0x0000000080001c40 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001c40 (0x00001797) x15 0x0000000080002c40 +core 0: 0x0000000080001c44 (0xd4478793) addi a5, a5, -700 +core 0: 3 0x0000000080001c44 (0xd4478793) x15 0x0000000080002984 +core 0: 0x0000000080001c48 (0x01050533) add a0, a0, a6 +core 0: 3 0x0000000080001c48 (0x01050533) x10 0x0000000080002940 +core 0: 0x0000000080001c4c (0x40c78633) sub a2, a5, a2 +core 0: 3 0x0000000080001c4c (0x40c78633) x12 0x000000000000005c +core 0: 0x0000000080001c50 (0xf21ff0ef) jal pc - 0xe0 +core 0: 3 0x0000000080001c50 (0xf21ff0ef) x1 0x0000000080001c54 +core 0: >>>> memset +core 0: 0x0000000080001b70 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b70 (0x00c567b3) x15 0x000000008000295c +core 0: 0x0000000080001b74 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b74 (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b78 (0x00c50733) add a4, a0, a2 +core 0: 3 0x0000000080001b78 (0x00c50733) x14 0x000000008000299c +core 0: 0x0000000080001b7c (0x02078663) beqz a5, pc + 44 +core 0: 3 0x0000000080001b7c (0x02078663) +core 0: 0x0000000080001b80 (0x0c0077d7) vsetvli a5, zero, e8, m1, ta, ma +core 0: 3 0x0000000080001b80 (0x0c0077d7) x15 0x0000000000000010 +core 0: 0x0000000080001b84 (0x5e05c0d7) vmv.v.x v1, a1 +core 0: 3 0x0000000080001b84 (0x5e05c0d7) e8 m1 l10 v1 0x00000000000000000000000000000000 +core 0: 0x0000000080001b88 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b88 (0x00050793) x15 0x0000000080002940 +core 0: 0x0000000080001b8c (0x04e57663) bgeu a0, a4, pc + 76 +core 0: 3 0x0000000080001b8c (0x04e57663) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002940 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000004c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002950 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002950 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000003c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002960 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002960 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000002c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002970 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002970 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000001c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002980 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x000000000000000e +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x000000008000298c 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000000e +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x000000008000298e +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x000000000000000e +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002998 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x0000000000000000 +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x000000008000299c +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001ba4 (0x00008067) ret +core 0: 3 0x0000000080001ba4 (0x00008067) +core 0: 0x0000000080001c54 (0x00048593) mv a1, s1 +core 0: 3 0x0000000080001c54 (0x00048593) x11 0x0000000000000001 +core 0: 0x0000000080001c58 (0x00040513) mv a0, s0 +core 0: 3 0x0000000080001c58 (0x00040513) x10 0x0000000000000000 +core 0: 0x0000000080001c5c (0xd29ff0ef) jal pc - 0x2d8 +core 0: 3 0x0000000080001c5c (0xd29ff0ef) x1 0x0000000080001c60 +core 0: >>>> thread_entry +core 0: 0x0000000080001984 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x0000000080001984 (0x00051463) +core 0: 0x0000000080001988 (0x00008067) ret +core 0: 3 0x0000000080001988 (0x00008067) +core 0: 0x0000000080001c60 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c60 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c64 (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c64 (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c68 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c68 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c6c (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c6c (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c70 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c70 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c74 (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c74 (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c78 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c78 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c7c (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c7c (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c80 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c80 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c84 (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c84 (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c88 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c88 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c8c (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c8c (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c90 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c90 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c94 (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c94 (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001c98 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001c98 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001c9c (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001c9c (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001ca0 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001ca0 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001ca4 (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001ca4 (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001ca8 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001ca8 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001cac (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001cac (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001cb0 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001cb0 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001cb4 (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001cb4 (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001cb8 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001cb8 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001cbc (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001cbc (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001cc0 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001cc0 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cc4 (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cc4 (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001cc8 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001cc8 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001ccc (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001ccc (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cd0 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cd0 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cd4 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cd4 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cd8 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001cd8 (0x16c000ef) x1 0x0000000080001cdc +core 0: >>>> main +core 0: 0x0000000080001e44 (0xf3010113) addi sp, sp, -208 +core 0: 3 0x0000000080001e44 (0xf3010113) x2 0x0000000080022440 +core 0: 0x0000000080001e48 (0x0c813427) fsd fs0, 200(sp) +core 0: 3 0x0000000080001e48 (0x0c813427) mem 0x0000000080022508 0xffffffff00000000 +core 0: 0x0000000080001e4c (0x0c913027) fsd fs1, 192(sp) +core 0: 3 0x0000000080001e4c (0x0c913027) mem 0x0000000080022500 0xffffffff00000000 +core 0: 0x0000000080001e50 (0x0b213c27) fsd fs2, 184(sp) +core 0: 3 0x0000000080001e50 (0x0b213c27) mem 0x00000000800224f8 0xffffffff00000000 +core 0: 0x0000000080001e54 (0x0b313827) fsd fs3, 176(sp) +core 0: 3 0x0000000080001e54 (0x0b313827) mem 0x00000000800224f0 0xffffffff00000000 +core 0: 0x0000000080001e58 (0x0b413427) fsd fs4, 168(sp) +core 0: 3 0x0000000080001e58 (0x0b413427) mem 0x00000000800224e8 0xffffffff00000000 +core 0: 0x0000000080001e5c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e5c (0xc00027f3) x15 0x00000000000003fa +core 0: 0x0000000080001e60 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001e60 (0x00000797) x15 0x0000000080001e60 +core 0: 0x0000000080001e64 (0x3507a707) flw fa4, 848(a5) +core 0: 3 0x0000000080001e64 (0x3507a707) f14 0xffffffff40500000 mem 0x00000000800021b0 +core 0: 0x0000000080001e68 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001e68 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000001 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e6c (0x00e12427) fsw fa4, 8(sp) +core 0: 3 0x0000000080001e6c (0x00e12427) mem 0x0000000080022448 0x40500000 +core 0: 0x0000000080001e70 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001e70 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022448 +core 0: 0x0000000080001e74 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e74 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001e78 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001e78 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001e7c (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001e7c (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001e80 (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001e80 (0x4017f7d3) c1_fflags 0x0000000000000003 f15 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e84 (0x00f12627) mem 0x000000008002244c 0x00000000 +core 0: 0x0000000080001e88 (0xfe0792e3) bnez a5, pc - 28 +core 0: 3 0x0000000080001e88 (0xfe0792e3) +core 0: 0x0000000080001e8c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e8c (0xc00027f3) x15 0x0000000000000591 +core 0: 0x0000000080001e90 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e90 (0xc00027f3) x15 0x000000000000059a +core 0: 0x0000000080001e94 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001e94 (0x00000797) x15 0x0000000080001e94 +core 0: 0x0000000080001e98 (0x3147b707) fld fa4, 788(a5) +core 0: 3 0x0000000080001e98 (0x3147b707) f14 0x400a000000000000 mem 0x00000000800021a8 +core 0: 0x0000000080001e9c (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001e9c (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001ea0 (0x00e13827) fsd fa4, 16(sp) +core 0: 3 0x0000000080001ea0 (0x00e13827) mem 0x0000000080022450 0x400a000000000000 +core 0: 0x0000000080001ea4 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ea4 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022450 +core 0: 0x0000000080001ea8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ea8 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001eac (0x4247c7d3) fround.d (args unknown) +core 0: 3 0x0000000080001eac (0x4247c7d3) c1_fflags 0x0000000000000003 f15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001eb0 (0x00f13c27) mem 0x0000000080022458 0x0000000000000003 +core 0: 0x0000000080001eb4 (0xfe0796e3) bnez a5, pc - 20 +core 0: 3 0x0000000080001eb4 (0xfe0796e3) +core 0: 0x0000000080001eb8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001eb8 (0xc00027f3) x15 0x000000000000064b +core 0: 0x0000000080001ebc (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ebc (0xc00027f3) x15 0x0000000000000654 +core 0: 0x0000000080001ec0 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001ec0 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ec4 (0xa01042d3) fleq.s (args unknown) +core 0: 3 0x0000000080001ec4 (0xa01042d3) x5 0x0000000000000001 +core 0: 0x0000000080001ec8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ec8 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001ecc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ecc (0xfe079ce3) +core 0: 0x0000000080001ed0 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ed0 (0xc00027f3) x15 0x0000000000000688 +core 0: 0x0000000080001ed4 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ed4 (0xc00027f3) x15 0x0000000000000691 +core 0: 0x0000000080001ed8 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001ed8 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001edc (0xa21042d3) fleq.d (args unknown) +core 0: 3 0x0000000080001edc (0xa21042d3) c1_fflags 0x0000000000000013 x5 0x0000000000000000 +core 0: 0x0000000080001ee0 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ee0 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001ee4 (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001ee4 (0xfe079ce3) +core 0: 0x0000000080001ee8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ee8 (0xc00027f3) x15 0x00000000000006c5 +core 0: 0x0000000080001eec (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001eec (0xc00027f3) x15 0x00000000000006ce +core 0: 0x0000000080001ef0 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001ef0 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001ef4 (0x2820a053) fminm.s (args unknown) +core 0: 3 0x0000000080001ef4 (0x2820a053) f0 0xffffffff00000000 +core 0: 0x0000000080001ef8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef8 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001efc (0xfe079ce3) bnez a5, pc - 8 +core 0: 3 0x0000000080001efc (0xfe079ce3) +core 0: 0x0000000080001f00 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f00 (0xc00027f3) x15 0x0000000000000715 +core 0: 0x0000000080001f04 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f04 (0xc00027f3) x15 0x000000000000071e +core 0: 0x0000000080001f08 (0x00000e17) auipc t3, 0x0 +core 0: 3 0x0000000080001f08 (0x00000e17) x28 0x0000000080001f08 +core 0: 0x0000000080001f0c (0x2ace0e13) addi t3, t3, 684 +core 0: 3 0x0000000080001f0c (0x2ace0e13) x28 0x00000000800021b4 +core 0: 0x0000000080001f10 (0x00000317) auipc t1, 0x0 +core 0: 3 0x0000000080001f10 (0x00000317) x6 0x0000000080001f10 +core 0: 0x0000000080001f14 (0x2a830313) addi t1, t1, 680 +core 0: 3 0x0000000080001f14 (0x2a830313) x6 0x00000000800021b8 +core 0: 0x0000000080001f18 (0x00000897) auipc a7, 0x0 +core 0: 3 0x0000000080001f18 (0x00000897) x17 0x0000000080001f18 +core 0: 0x0000000080001f1c (0x2a488893) addi a7, a7, 676 +core 0: 3 0x0000000080001f1c (0x2a488893) x17 0x00000000800021bc +core 0: 0x0000000080001f20 (0x00000817) auipc a6, 0x0 +core 0: 3 0x0000000080001f20 (0x00000817) x16 0x0000000080001f20 +core 0: 0x0000000080001f24 (0x2a080813) addi a6, a6, 672 +core 0: 3 0x0000000080001f24 (0x2a080813) x16 0x00000000800021c0 +core 0: 0x0000000080001f28 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001f28 (0x00000517) x10 0x0000000080001f28 +core 0: 0x0000000080001f2c (0x29c50513) addi a0, a0, 668 +core 0: 3 0x0000000080001f2c (0x29c50513) x10 0x00000000800021c4 +core 0: 0x0000000080001f30 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001f30 (0x00000597) x11 0x0000000080001f30 +core 0: 0x0000000080001f34 (0x29858593) addi a1, a1, 664 +core 0: 3 0x0000000080001f34 (0x29858593) x11 0x00000000800021c8 +core 0: 0x0000000080001f38 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001f38 (0x00000617) x12 0x0000000080001f38 +core 0: 0x0000000080001f3c (0x29460613) addi a2, a2, 660 +core 0: 3 0x0000000080001f3c (0x29460613) x12 0x00000000800021cc +core 0: 0x0000000080001f40 (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001f40 (0x00000697) x13 0x0000000080001f40 +core 0: 0x0000000080001f44 (0x29068693) addi a3, a3, 656 +core 0: 3 0x0000000080001f44 (0x29068693) x13 0x00000000800021d0 +core 0: 0x0000000080001f48 (0x00000717) auipc a4, 0x0 +core 0: 3 0x0000000080001f48 (0x00000717) x14 0x0000000080001f48 +core 0: 0x0000000080001f4c (0x28c70713) addi a4, a4, 652 +core 0: 3 0x0000000080001f4c (0x28c70713) x14 0x00000000800021d4 +core 0: 0x0000000080001f50 (0x000e2a07) flw fs4, 0(t3) +core 0: 3 0x0000000080001f50 (0x000e2a07) f20 0xffffffff38800000 mem 0x00000000800021b4 +core 0: 0x0000000080001f54 (0x00032987) flw fs3, 0(t1) +core 0: 3 0x0000000080001f54 (0x00032987) f19 0xffffffff39000000 mem 0x00000000800021b8 +core 0: 0x0000000080001f58 (0x0008a907) flw fs2, 0(a7) +core 0: 3 0x0000000080001f58 (0x0008a907) f18 0xffffffff39800000 mem 0x00000000800021bc +core 0: 0x0000000080001f5c (0x00082487) flw fs1, 0(a6) +core 0: 3 0x0000000080001f5c (0x00082487) f9 0xffffffff3a000000 mem 0x00000000800021c0 +core 0: 0x0000000080001f60 (0x00052407) flw fs0, 0(a0) +core 0: 3 0x0000000080001f60 (0x00052407) f8 0xffffffff3a800000 mem 0x00000000800021c4 +core 0: 0x0000000080001f64 (0x0005af87) flw ft11, 0(a1) +core 0: 3 0x0000000080001f64 (0x0005af87) f31 0xffffffff3b000000 mem 0x00000000800021c8 +core 0: 0x0000000080001f68 (0x00062f07) flw ft10, 0(a2) +core 0: 3 0x0000000080001f68 (0x00062f07) f30 0xffffffff3c800000 mem 0x00000000800021cc +core 0: 0x0000000080001f6c (0x0006ae87) flw ft9, 0(a3) +core 0: 3 0x0000000080001f6c (0x0006ae87) f29 0xffffffff3d000000 mem 0x00000000800021d0 +core 0: 0x0000000080001f70 (0x00072e07) flw ft8, 0(a4) +core 0: 3 0x0000000080001f70 (0x00072e07) f28 0xffffffff42000000 mem 0x00000000800021d4 +core 0: 0x0000000080001f74 (0xf01007d3) fli.s (args unknown) +core 0: 3 0x0000000080001f74 (0xf01007d3) f15 0xffffffffbf800000 +core 0: 0x0000000080001f78 (0xf01108d3) fli.s (args unknown) +core 0: 3 0x0000000080001f78 (0xf01108d3) f17 0xffffffff37800000 +core 0: 0x0000000080001f7c (0xf0118853) fli.s (args unknown) +core 0: 3 0x0000000080001f7c (0xf0118853) f16 0xffffffff38000000 +core 0: 0x0000000080001f80 (0xf01203d3) fli.s (args unknown) +core 0: 3 0x0000000080001f80 (0xf01203d3) f7 0xffffffff3b800000 +core 0: 0x0000000080001f84 (0xf0128353) fli.s (args unknown) +core 0: 3 0x0000000080001f84 (0xf0128353) f6 0xffffffff3c000000 +core 0: 0x0000000080001f88 (0xf01302d3) fli.s (args unknown) +core 0: 3 0x0000000080001f88 (0xf01302d3) f5 0xffffffff3d800000 +core 0: 0x0000000080001f8c (0xf0138253) fli.s (args unknown) +core 0: 3 0x0000000080001f8c (0xf0138253) f4 0xffffffff3e000000 +core 0: 0x0000000080001f90 (0xf01401d3) fli.s (args unknown) +core 0: 3 0x0000000080001f90 (0xf01401d3) f3 0xffffffff3e800000 +core 0: 0x0000000080001f94 (0xf0160153) fli.s (args unknown) +core 0: 3 0x0000000080001f94 (0xf0160153) f2 0xffffffff3f000000 +core 0: 0x0000000080001f98 (0xf01700d3) fli.s (args unknown) +core 0: 3 0x0000000080001f98 (0xf01700d3) f1 0xffffffff3f400000 +core 0: 0x0000000080001f9c (0xf0180053) fli.s (args unknown) +core 0: 3 0x0000000080001f9c (0xf0180053) f0 0xffffffff3f800000 +core 0: 0x0000000080001fa0 (0xf0188553) fli.s (args unknown) +core 0: 3 0x0000000080001fa0 (0xf0188553) f10 0xffffffff3fa00000 +core 0: 0x0000000080001fa4 (0xf01905d3) fli.s (args unknown) +core 0: 3 0x0000000080001fa4 (0xf01905d3) f11 0xffffffff3fc00000 +core 0: 0x0000000080001fa8 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001fa8 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080001fac (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080001fac (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x0000000080001fb0 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x0000000080001fb0 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x0000000080001fb4 (0x03112427) fsw fa7, 40(sp) +core 0: 3 0x0000000080001fb4 (0x03112427) mem 0x0000000080022468 0x37800000 +core 0: 0x0000000080001fb8 (0x03012627) fsw fa6, 44(sp) +core 0: 3 0x0000000080001fb8 (0x03012627) mem 0x000000008002246c 0x38000000 +core 0: 0x0000000080001fbc (0x03412827) fsw fs4, 48(sp) +core 0: 3 0x0000000080001fbc (0x03412827) mem 0x0000000080022470 0x38800000 +core 0: 0x0000000080001fc0 (0x03312a27) fsw fs3, 52(sp) +core 0: 3 0x0000000080001fc0 (0x03312a27) mem 0x0000000080022474 0x39000000 +core 0: 0x0000000080001fc4 (0x03212c27) fsw fs2, 56(sp) +core 0: 3 0x0000000080001fc4 (0x03212c27) mem 0x0000000080022478 0x39800000 +core 0: 0x0000000080001fc8 (0x02912e27) fsw fs1, 60(sp) +core 0: 3 0x0000000080001fc8 (0x02912e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x0000000080001fcc (0x04812027) fsw fs0, 64(sp) +core 0: 3 0x0000000080001fcc (0x04812027) mem 0x0000000080022480 0x3a800000 +core 0: 0x0000000080001fd0 (0x05f12227) fsw ft11, 68(sp) +core 0: 3 0x0000000080001fd0 (0x05f12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x0000000080001fd4 (0x04712427) fsw ft7, 72(sp) +core 0: 3 0x0000000080001fd4 (0x04712427) mem 0x0000000080022488 0x3b800000 +core 0: 0x0000000080001fd8 (0x04612627) fsw ft6, 76(sp) +core 0: 3 0x0000000080001fd8 (0x04612627) mem 0x000000008002248c 0x3c000000 +core 0: 0x0000000080001fdc (0x05e12827) fsw ft10, 80(sp) +core 0: 3 0x0000000080001fdc (0x05e12827) mem 0x0000000080022490 0x3c800000 +core 0: 0x0000000080001fe0 (0x05d12a27) fsw ft9, 84(sp) +core 0: 3 0x0000000080001fe0 (0x05d12a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x0000000080001fe4 (0x04512c27) fsw ft5, 88(sp) +core 0: 3 0x0000000080001fe4 (0x04512c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x0000000080001fe8 (0x04412e27) fsw ft4, 92(sp) +core 0: 3 0x0000000080001fe8 (0x04412e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x0000000080001fec (0x06312027) fsw ft3, 96(sp) +core 0: 3 0x0000000080001fec (0x06312027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x0000000080001ff0 (0x06212227) fsw ft2, 100(sp) +core 0: 3 0x0000000080001ff0 (0x06212227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x0000000080001ff4 (0x06112427) fsw ft1, 104(sp) +core 0: 3 0x0000000080001ff4 (0x06112427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080001ff8 (0x06012627) fsw ft0, 108(sp) +core 0: 3 0x0000000080001ff8 (0x06012627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080001ffc (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080001ffc (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002000 (0x06a12827) fsw fa0, 112(sp) +core 0: 3 0x0000000080002000 (0x06a12827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x0000000080002004 (0xf01a0653) fli.s (args unknown) +core 0: 3 0x0000000080002004 (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002008 (0x06b12a27) fsw fa1, 116(sp) +core 0: 3 0x0000000080002008 (0x06b12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x000000008000200c (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x000000008000200c (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002010 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002010 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x0000000080002014 (0xf01b0753) fli.s (args unknown) +core 0: 3 0x0000000080002014 (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002018 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002018 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x000000008000201c (0xf01b8653) fli.s (args unknown) +core 0: 3 0x000000008000201c (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002020 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002020 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x0000000080002024 (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x0000000080002024 (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002028 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002028 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x000000008000202c (0xf01c8753) fli.s (args unknown) +core 0: 3 0x000000008000202c (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002030 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002030 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x0000000080002034 (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x0000000080002034 (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002038 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002038 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x000000008000203c (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x000000008000203c (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002040 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002040 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x0000000080002044 (0x09c12a27) fsw ft8, 148(sp) +core 0: 3 0x0000000080002044 (0x09c12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002048 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002048 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x000000008000204c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x000000008000204c (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080002050 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002050 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x0000000080002054 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002054 (0xf4079ce3) +core 0: 0x0000000080002058 (0xf01007d3) fli.s (args unknown) +core 0: 3 0x0000000080002058 (0xf01007d3) f15 0xffffffffbf800000 +core 0: 0x000000008000205c (0xf0110a53) fli.s (args unknown) +core 0: 3 0x000000008000205c (0xf0110a53) f20 0xffffffff37800000 +core 0: 0x0000000080002060 (0xf01189d3) fli.s (args unknown) +core 0: 3 0x0000000080002060 (0xf01189d3) f19 0xffffffff38000000 +core 0: 0x0000000080002064 (0x000e2907) flw fs2, 0(t3) +core 0: 3 0x0000000080002064 (0x000e2907) f18 0xffffffff38800000 mem 0x00000000800021b4 +core 0: 0x0000000080002068 (0x00032487) flw fs1, 0(t1) +core 0: 3 0x0000000080002068 (0x00032487) f9 0xffffffff39000000 mem 0x00000000800021b8 +core 0: 0x000000008000206c (0x0008a407) flw fs0, 0(a7) +core 0: 3 0x000000008000206c (0x0008a407) f8 0xffffffff39800000 mem 0x00000000800021bc +core 0: 0x0000000080002070 (0x00082f87) flw ft11, 0(a6) +core 0: 3 0x0000000080002070 (0x00082f87) f31 0xffffffff3a000000 mem 0x00000000800021c0 +core 0: 0x0000000080002074 (0x00052f07) flw ft10, 0(a0) +core 0: 3 0x0000000080002074 (0x00052f07) f30 0xffffffff3a800000 mem 0x00000000800021c4 +core 0: 0x0000000080002078 (0x0005ae87) flw ft9, 0(a1) +core 0: 3 0x0000000080002078 (0x0005ae87) f29 0xffffffff3b000000 mem 0x00000000800021c8 +core 0: 0x000000008000207c (0xf0120e53) fli.s (args unknown) +core 0: 3 0x000000008000207c (0xf0120e53) f28 0xffffffff3b800000 +core 0: 0x0000000080002080 (0xf01288d3) fli.s (args unknown) +core 0: 3 0x0000000080002080 (0xf01288d3) f17 0xffffffff3c000000 +core 0: 0x0000000080002084 (0x00062807) flw fa6, 0(a2) +core 0: 3 0x0000000080002084 (0x00062807) f16 0xffffffff3c800000 mem 0x00000000800021cc +core 0: 0x0000000080002088 (0x0006a387) flw ft7, 0(a3) +core 0: 3 0x0000000080002088 (0x0006a387) f7 0xffffffff3d000000 mem 0x00000000800021d0 +core 0: 0x000000008000208c (0xf0130353) fli.s (args unknown) +core 0: 3 0x000000008000208c (0xf0130353) f6 0xffffffff3d800000 +core 0: 0x0000000080002090 (0xf01382d3) fli.s (args unknown) +core 0: 3 0x0000000080002090 (0xf01382d3) f5 0xffffffff3e000000 +core 0: 0x0000000080002094 (0xf0140253) fli.s (args unknown) +core 0: 3 0x0000000080002094 (0xf0140253) f4 0xffffffff3e800000 +core 0: 0x0000000080002098 (0xf01601d3) fli.s (args unknown) +core 0: 3 0x0000000080002098 (0xf01601d3) f3 0xffffffff3f000000 +core 0: 0x000000008000209c (0xf0170153) fli.s (args unknown) +core 0: 3 0x000000008000209c (0xf0170153) f2 0xffffffff3f400000 +core 0: 0x00000000800020a0 (0xf01800d3) fli.s (args unknown) +core 0: 3 0x00000000800020a0 (0xf01800d3) f1 0xffffffff3f800000 +core 0: 0x00000000800020a4 (0xf0188053) fli.s (args unknown) +core 0: 3 0x00000000800020a4 (0xf0188053) f0 0xffffffff3fa00000 +core 0: 0x00000000800020a8 (0xf0190553) fli.s (args unknown) +core 0: 3 0x00000000800020a8 (0xf0190553) f10 0xffffffff3fc00000 +core 0: 0x00000000800020ac (0x00072587) flw fa1, 0(a4) +core 0: 3 0x00000000800020ac (0x00072587) f11 0xffffffff42000000 mem 0x00000000800021d4 +core 0: 0x00000000800020b0 (0x00a00793) li a5, 10 +core 0: 3 0x00000000800020b0 (0x00a00793) x15 0x000000000000000a +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x00000000800020b4 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x00000000800020b4 (0x02f12027) mem 0x0000000080022460 0xbf800000 +core 0: 0x00000000800020b8 (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x00000000800020b8 (0x02f12227) mem 0x0000000080022464 0xbf800000 +core 0: 0x00000000800020bc (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x00000000800020bc (0x03412427) mem 0x0000000080022468 0x37800000 +core 0: 0x00000000800020c0 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x00000000800020c0 (0x03312627) mem 0x000000008002246c 0x38000000 +core 0: 0x00000000800020c4 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x00000000800020c4 (0x03212827) mem 0x0000000080022470 0x38800000 +core 0: 0x00000000800020c8 (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x00000000800020c8 (0x02912a27) mem 0x0000000080022474 0x39000000 +core 0: 0x00000000800020cc (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x00000000800020cc (0x02812c27) mem 0x0000000080022478 0x39800000 +core 0: 0x00000000800020d0 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x00000000800020d0 (0x03f12e27) mem 0x000000008002247c 0x3a000000 +core 0: 0x00000000800020d4 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x00000000800020d4 (0x05e12027) mem 0x0000000080022480 0x3a800000 +core 0: 0x00000000800020d8 (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x00000000800020d8 (0x05d12227) mem 0x0000000080022484 0x3b000000 +core 0: 0x00000000800020dc (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800020dc (0x05c12427) mem 0x0000000080022488 0x3b800000 +core 0: 0x00000000800020e0 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800020e0 (0x05112627) mem 0x000000008002248c 0x3c000000 +core 0: 0x00000000800020e4 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800020e4 (0x05012827) mem 0x0000000080022490 0x3c800000 +core 0: 0x00000000800020e8 (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800020e8 (0x04712a27) mem 0x0000000080022494 0x3d000000 +core 0: 0x00000000800020ec (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800020ec (0x04612c27) mem 0x0000000080022498 0x3d800000 +core 0: 0x00000000800020f0 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800020f0 (0x04512e27) mem 0x000000008002249c 0x3e000000 +core 0: 0x00000000800020f4 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800020f4 (0x06412027) mem 0x00000000800224a0 0x3e800000 +core 0: 0x00000000800020f8 (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800020f8 (0x06312227) mem 0x00000000800224a4 0x3f000000 +core 0: 0x00000000800020fc (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800020fc (0x06212427) mem 0x00000000800224a8 0x3f400000 +core 0: 0x0000000080002100 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002100 (0x06112627) mem 0x00000000800224ac 0x3f800000 +core 0: 0x0000000080002104 (0xf0198753) fli.s (args unknown) +core 0: 3 0x0000000080002104 (0xf0198753) f14 0xffffffff3fe00000 +core 0: 0x0000000080002108 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002108 (0x06012827) mem 0x00000000800224b0 0x3fa00000 +core 0: 0x000000008000210c (0xf01a0653) fli.s (args unknown) +core 0: 3 0x000000008000210c (0xf01a0653) f12 0xffffffff40000000 +core 0: 0x0000000080002110 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x0000000080002110 (0x06a12a27) mem 0x00000000800224b4 0x3fc00000 +core 0: 0x0000000080002114 (0xf01a86d3) fli.s (args unknown) +core 0: 3 0x0000000080002114 (0xf01a86d3) f13 0xffffffff40200000 +core 0: 0x0000000080002118 (0x06e12c27) fsw fa4, 120(sp) +core 0: 3 0x0000000080002118 (0x06e12c27) mem 0x00000000800224b8 0x3fe00000 +core 0: 0x000000008000211c (0xf01b0753) fli.s (args unknown) +core 0: 3 0x000000008000211c (0xf01b0753) f14 0xffffffff40400000 +core 0: 0x0000000080002120 (0x06c12e27) fsw fa2, 124(sp) +core 0: 3 0x0000000080002120 (0x06c12e27) mem 0x00000000800224bc 0x40000000 +core 0: 0x0000000080002124 (0xf01b8653) fli.s (args unknown) +core 0: 3 0x0000000080002124 (0xf01b8653) f12 0xffffffff40800000 +core 0: 0x0000000080002128 (0x08d12027) fsw fa3, 128(sp) +core 0: 3 0x0000000080002128 (0x08d12027) mem 0x00000000800224c0 0x40200000 +core 0: 0x000000008000212c (0xf01c06d3) fli.s (args unknown) +core 0: 3 0x000000008000212c (0xf01c06d3) f13 0xffffffff41000000 +core 0: 0x0000000080002130 (0x08e12227) fsw fa4, 132(sp) +core 0: 3 0x0000000080002130 (0x08e12227) mem 0x00000000800224c4 0x40400000 +core 0: 0x0000000080002134 (0xf01c8753) fli.s (args unknown) +core 0: 3 0x0000000080002134 (0xf01c8753) f14 0xffffffff41800000 +core 0: 0x0000000080002138 (0x08c12427) fsw fa2, 136(sp) +core 0: 3 0x0000000080002138 (0x08c12427) mem 0x00000000800224c8 0x40800000 +core 0: 0x000000008000213c (0x08d12627) fsw fa3, 140(sp) +core 0: 3 0x000000008000213c (0x08d12627) mem 0x00000000800224cc 0x41000000 +core 0: 0x0000000080002140 (0xf01f06d3) fli.s (args unknown) +core 0: 3 0x0000000080002140 (0xf01f06d3) f13 0xffffffff7f800000 +core 0: 0x0000000080002144 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002144 (0x08e12827) mem 0x00000000800224d0 0x41800000 +core 0: 0x0000000080002148 (0xf01f8753) fli.s (args unknown) +core 0: 3 0x0000000080002148 (0xf01f8753) f14 0xffffffff7fc00000 +core 0: 0x000000008000214c (0x08b12a27) fsw fa1, 148(sp) +core 0: 3 0x000000008000214c (0x08b12a27) mem 0x00000000800224d4 0x42000000 +core 0: 0x0000000080002150 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002150 (0x08d12c27) mem 0x00000000800224d8 0x7f800000 +core 0: 0x0000000080002154 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002154 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080002158 (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x0000000080002158 (0x08e12e27) mem 0x00000000800224dc 0x7fc00000 +core 0: 0x000000008000215c (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x000000008000215c (0xf4079ce3) +core 0: 0x0000000080002160 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002160 (0xc00027f3) x15 0x0000000000000bb9 +core 0: 0x0000000080002164 (0x00000513) li a0, 0 +core 0: 3 0x0000000080002164 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080002168 (0x0c813407) fld fs0, 200(sp) +core 0: 3 0x0000000080002168 (0x0c813407) f8 0xffffffff00000000 mem 0x0000000080022508 +core 0: 0x000000008000216c (0x0c013487) fld fs1, 192(sp) +core 0: 3 0x000000008000216c (0x0c013487) f9 0xffffffff00000000 mem 0x0000000080022500 +core 0: 0x0000000080002170 (0x0b813907) fld fs2, 184(sp) +core 0: 3 0x0000000080002170 (0x0b813907) f18 0xffffffff00000000 mem 0x00000000800224f8 +core 0: 0x0000000080002174 (0x0b013987) fld fs3, 176(sp) +core 0: 3 0x0000000080002174 (0x0b013987) f19 0xffffffff00000000 mem 0x00000000800224f0 +core 0: 0x0000000080002178 (0x0a813a07) fld fs4, 168(sp) +core 0: 3 0x0000000080002178 (0x0a813a07) f20 0xffffffff00000000 mem 0x00000000800224e8 +core 0: 0x000000008000217c (0x0d010113) addi sp, sp, 208 +core 0: 3 0x000000008000217c (0x0d010113) x2 0x0000000080022510 +core 0: 0x0000000080002180 (0x00008067) ret +core 0: 3 0x0000000080002180 (0x00008067) +core 0: 0x0000000080001cdc (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cdc (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001ce0 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001ce0 (0x000a0493) x9 0x0000000080022540 +core 0: 0x0000000080001ce4 (0xe9018413) addi s0, gp, -368 +core 0: 3 0x0000000080001ce4 (0xe9018413) x8 0x0000000080002838 +core 0: 0x0000000080001ce8 (0xda018913) addi s2, gp, -608 +core 0: 3 0x0000000080001ce8 (0xda018913) x18 0x0000000080002748 +core 0: 0x0000000080001cec (0xf8018993) addi s3, gp, -128 +core 0: 3 0x0000000080001cec (0xf8018993) x19 0x0000000080002928 +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002748 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002838 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022540 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002838 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022540 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022540 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000000000bb9 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x00000000800021d4 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022540 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022540 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002748 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022540 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022540 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022540 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022541 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022541 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022541 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022541 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022541 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022542 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022542 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022542 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022542 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022542 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022543 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022543 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022543 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022543 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022543 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022544 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022544 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022544 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022544 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022544 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022545 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022545 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022545 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022545 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022545 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022546 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022546 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022546 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022546 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022546 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022547 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022547 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022547 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022547 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022547 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022548 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022548 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022548 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022548 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022548 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022549 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022549 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022549 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022549 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022549 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002254a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002254a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002254a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002254a 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002254a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002254b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002254b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022540 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022540 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002748 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002254b mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002254b 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002254b mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002838 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002840 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002750 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002254b +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002750 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002840 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002254b +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002840 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x000000008002254b +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002254b +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x000000008002254b +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x000000008002254b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x000000008002254b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002750 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002254b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002254b 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002254b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002254c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002254c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002254c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002254c 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002254c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002254d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002254d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002254d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002254d 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002254d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002254e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002254e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002254e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002254e 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002254e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002254f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002254f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002254f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002254f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002254f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022550 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022550 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022550 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022550 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022550 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022551 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022551 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022551 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022551 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022551 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022552 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022552 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022552 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022552 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022552 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022553 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022553 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022553 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022553 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022553 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022554 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022554 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022554 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022554 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022554 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022555 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022555 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022555 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022555 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022555 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022556 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022556 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002254b mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002254b mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002750 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022556 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022556 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022556 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002840 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002848 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002758 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022556 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002758 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002848 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022556 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002848 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022556 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022556 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022556 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022556 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022556 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002758 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022556 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022556 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022556 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022557 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022557 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022557 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022557 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022557 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022558 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022558 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022558 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022558 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022558 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022559 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022559 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022559 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022559 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022559 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002255a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002255a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002255a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002255a 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002255a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002255b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002255b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002255b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002255b 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002255b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002255c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002255c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002255c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002255c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002255c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002255d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002255d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002255d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002255d 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002255d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002255e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002255e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002255e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002255e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002255e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002255f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002255f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002255f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002255f 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002255f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022560 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022560 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022560 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022560 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022560 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022561 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022561 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022556 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022556 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002758 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022561 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022561 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022561 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002848 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002850 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002760 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022561 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002760 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002850 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022561 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002850 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022561 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022561 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022561 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022561 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022561 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002760 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022561 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022561 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022561 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022562 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022562 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022562 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022562 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022562 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022563 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022563 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022563 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022563 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022563 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022564 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022564 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022564 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022564 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022564 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022565 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022565 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022565 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022565 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022565 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022566 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022566 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022566 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022566 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022566 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022567 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022567 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022567 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022567 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022567 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022568 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022568 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022568 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022568 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022568 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022569 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022569 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022569 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022569 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022569 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002256a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002256a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002256a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002256a 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002256a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002256b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002256b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002256b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002256b 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002256b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002256c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002256c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022561 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022561 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002760 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002256c mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002256c 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002256c mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002850 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002858 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002768 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002256c +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002768 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002256c +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002858 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x000000008002256c +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002256c +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x000000008002256c +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x000000008002256c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x000000008002256c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002768 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002256c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002256c 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002256c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002256d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002256d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002256d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002256d 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002256d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002256e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002256e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002256e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002256e 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002256e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002256f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002256f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002256f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002256f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002256f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022570 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022570 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022570 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022570 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022570 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022571 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022571 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022571 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022571 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022571 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022572 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022572 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022572 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022572 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022572 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022573 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022573 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022573 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022573 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022573 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022574 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022574 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022574 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022574 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022574 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022575 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022575 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022575 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022575 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022575 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022576 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022576 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022576 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022576 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022576 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022577 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022577 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002256c mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002256c mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002768 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022577 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022577 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022577 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002858 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002860 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002770 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022577 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002770 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002860 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022577 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002860 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022577 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022577 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022577 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022577 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022577 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002770 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022577 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022577 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022577 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022578 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022578 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022578 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022578 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022578 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022579 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022579 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022579 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022579 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022579 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002257a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002257a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002257a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002257a 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002257a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002257b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002257b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002257b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002257b 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002257b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002257c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002257c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002257c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002257c 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002257c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002257d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002257d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002257d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002257d 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002257d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002257e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002257e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002257e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002257e 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002257e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002257f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002257f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002257f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002257f 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002257f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022580 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022580 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022580 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022580 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022580 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022581 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022581 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022581 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022581 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022581 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022582 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022582 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022577 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022577 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002770 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022582 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022582 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022582 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002860 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002868 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002778 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022582 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002778 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002868 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022582 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002868 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022582 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022582 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022582 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022582 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022582 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002778 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022582 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022582 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022582 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022583 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022583 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022583 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022583 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022583 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022584 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022584 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022584 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022584 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022584 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022585 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022585 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022585 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022585 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022585 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022586 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022586 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022586 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022586 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022586 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022587 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022587 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022587 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022587 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022587 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022588 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022588 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022588 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022588 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022588 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022589 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022589 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022589 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022589 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022589 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002258a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002258a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002258a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002258a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002258a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002258b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002258b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002258b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002258b 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002258b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002258c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002258c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002258c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002258c 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002258c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002258d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002258d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022582 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022582 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002778 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002258d mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002258d 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002258d mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002868 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002870 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002780 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002258d +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002780 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002870 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002258d +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002870 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x000000008002258d +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002258d +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x000000008002258d +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x000000008002258d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x000000008002258d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002780 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002258d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002258d 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002258d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002258e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002258e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002258e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002258e 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002258e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002258f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002258f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002258f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002258f 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002258f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022590 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022590 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022590 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022590 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022590 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022591 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022591 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022591 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022591 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022591 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022592 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022592 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022592 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022592 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022592 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022593 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022593 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022593 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022593 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022593 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022594 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022594 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022594 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022594 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022594 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022595 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022595 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022595 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022595 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022595 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022596 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022596 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022596 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022596 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022596 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022597 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022597 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022597 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022597 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022597 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022598 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022598 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002258d mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002258d mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002780 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022598 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022598 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022598 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002870 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002878 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002788 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022598 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002788 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002878 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022598 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002878 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022598 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022598 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022598 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022598 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022598 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002788 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022598 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022598 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022598 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022599 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022599 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022599 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022599 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022599 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002259a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002259a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002259a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002259a 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002259a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002259b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002259b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002259b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002259b 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002259b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002259c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002259c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002259c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002259c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002259c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002259d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002259d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002259d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002259d 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002259d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002259e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002259e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002259e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002259e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002259e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002259f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002259f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002259f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002259f 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002259f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a0 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a0 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a0 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a1 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a1 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a1 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a2 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a2 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a2 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022598 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022598 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002788 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800225a3 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800225a3 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800225a3 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002878 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002880 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002790 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800225a3 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002790 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002880 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800225a3 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002880 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x00000000800225a3 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800225a3 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x00000000800225a3 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x00000000800225a3 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x00000000800225a3 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002790 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a3 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a3 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a3 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a4 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a4 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a4 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a5 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a5 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a5 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a6 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a6 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a6 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a7 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a7 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a7 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a8 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a8 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a8 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225a9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225a9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225a9 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225a9 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225a9 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225aa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225aa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225aa mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225aa 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225aa mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ab +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ab +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ab mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ab 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ab mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ac +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ac +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ac mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ac 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ac mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ad +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ad +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ad mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ad 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ad mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ae +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ae +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800225a3 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800225a3 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002790 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800225ae mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800225ae 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800225ae mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002880 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002888 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002798 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800225ae +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002798 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002888 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800225ae +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002888 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x00000000800225ae +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800225ae +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x00000000800225ae +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x00000000800225ae +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x00000000800225ae +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002798 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ae mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ae 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ae mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225af +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225af +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225af mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225af 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225af mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b0 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b0 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b0 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b1 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b1 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b1 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b2 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b2 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b2 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b3 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b3 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b3 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b4 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b4 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b4 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b5 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b5 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b5 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b6 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b6 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b6 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b7 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b7 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b7 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b8 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b8 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b8 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225b9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225b9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800225ae mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800225ae mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002798 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800225b9 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800225b9 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800225b9 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002888 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002890 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027a0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800225b9 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027a0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002890 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800225b9 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002890 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x00000000800225b9 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800225b9 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x00000000800225b9 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x00000000800225b9 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x00000000800225b9 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027a0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225b9 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225b9 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225b9 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ba +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ba +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ba mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ba 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ba mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225bb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225bb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225bb mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225bb 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225bb mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225bc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225bc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225bc mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225bc 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225bc mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225bd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225bd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225bd mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225bd 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225bd mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225be +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225be +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225be mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225be 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225be mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225bf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225bf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225bf mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225bf 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225bf mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c0 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c0 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c0 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c1 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c1 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c1 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c2 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c2 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c2 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c3 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c3 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c3 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800225b9 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800225b9 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027a0 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800225c4 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800225c4 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800225c4 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002890 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002898 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027a8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800225c4 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027a8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002898 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800225c4 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002898 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x00000000800225c4 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800225c4 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x00000000800225c4 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x00000000800225c4 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x00000000800225c4 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027a8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c4 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c4 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c4 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c5 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c5 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c5 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c6 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c6 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c6 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c7 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c7 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c7 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c8 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c8 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c8 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225c9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225c9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225c9 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225c9 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225c9 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ca +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ca +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ca mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ca 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ca mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225cb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225cb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225cb mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225cb 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225cb mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225cc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225cc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225cc mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225cc 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225cc mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225cd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225cd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225cd mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225cd 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225cd mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ce +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ce +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ce mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ce 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ce mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225cf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225cf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800225c4 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800225c4 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027a8 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800225cf mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800225cf 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800225cf mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002898 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028a0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027b0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800225cf +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027b0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028a0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800225cf +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028a0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x00000000800225cf +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800225cf +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x00000000800225cf +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x00000000800225cf +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x00000000800225cf +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027b0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225cf mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225cf 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225cf mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d0 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d0 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d0 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d1 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d1 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d1 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d2 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d2 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d2 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d3 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d3 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d3 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d4 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d4 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d4 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d5 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d5 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d5 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d6 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d6 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d6 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d7 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d7 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d7 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d8 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d8 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d8 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225d9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225d9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225d9 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225d9 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225d9 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225da +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225da +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800225cf mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800225cf mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027b0 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800225da mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800225da 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800225da mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028a0 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028a8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027b8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800225da +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027b8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028a8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800225da +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028a8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x00000000800225da +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800225da +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x00000000800225da +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x00000000800225da +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x00000000800225da +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027b8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225da mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225da 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225da mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225db +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225db +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225db mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225db 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225db mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225dc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225dc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225dc mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225dc 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225dc mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225dd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225dd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225dd mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225dd 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225dd mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225de +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225de +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225de mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225de 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225de mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225df +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225df +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225df mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225df 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225df mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e0 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e0 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e0 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e1 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e1 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e1 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e2 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e2 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e2 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e3 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e3 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e3 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e4 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e4 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e4 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800225da mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800225da mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027b8 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800225e5 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800225e5 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800225e5 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028a8 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028b0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027c0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800225e5 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027c0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028b0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800225e5 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028b0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x00000000800225e5 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800225e5 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x00000000800225e5 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x00000000800225e5 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x00000000800225e5 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027c0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e5 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e5 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e5 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e6 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e6 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e6 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e7 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e7 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e7 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e8 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e8 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e8 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225e9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225e9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225e9 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225e9 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225e9 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ea +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ea +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ea mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ea 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ea mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225eb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225eb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225eb mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225eb 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225eb mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ec +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ec +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ec mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ec 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ec mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ed +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ed +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ed mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ed 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ed mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ee +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ee +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ee mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ee 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ee mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ef +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ef +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ef mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ef 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ef mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800225e5 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800225e5 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027c0 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800225f0 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800225f0 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800225f0 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028b0 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028b8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027c8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800225f0 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027c8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028b8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800225f0 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028b8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x00000000800225f0 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800225f0 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x00000000800225f0 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x00000000800225f0 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x00000000800225f0 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027c8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f0 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f0 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f0 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f1 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f1 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f1 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f2 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f2 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f2 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f3 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f3 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f3 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f4 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f4 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f4 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f5 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f5 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f5 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f6 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f6 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f6 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f7 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f7 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f7 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f8 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f8 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f8 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225f9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225f9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225f9 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225f9 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225f9 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225fa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225fa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225fa mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225fa 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225fa mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225fb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225fb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800225f0 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800225f0 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027c8 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800225fb mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800225fb 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800225fb mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028b8 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028c0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027d0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800225fb +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027d0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028c0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800225fb +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028c0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x00000000800225fb +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800225fb +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x00000000800225fb +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x00000000800225fb +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x00000000800225fb +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027d0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225fb mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225fb 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225fb mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225fc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225fc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225fc mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225fc 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225fc mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225fd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225fd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225fd mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225fd 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225fd mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225fe +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225fe +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225fe mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225fe 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225fe mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800225ff +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x00000000800225ff +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800225ff mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800225ff 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800225ff mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022600 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022600 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022600 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022600 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022600 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022601 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022601 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022601 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022601 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022601 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022602 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022602 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022602 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022602 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022602 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022603 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022603 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022603 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022603 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022603 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022604 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022604 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022604 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022604 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022604 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022605 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022605 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022605 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022605 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022605 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022606 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022606 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800225fb mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800225fb mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027d0 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022606 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022606 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022606 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028c0 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028c8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027d8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022606 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027d8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028c8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022606 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028c8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022606 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022606 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022606 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022606 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022606 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027d8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022606 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022606 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022606 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022607 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022607 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022607 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022607 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022607 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022608 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022608 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022608 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022608 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022608 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022609 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022609 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022609 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022609 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022609 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002260a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002260a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002260a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002260a 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002260a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002260b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002260b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002260b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002260b 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002260b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002260c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002260c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002260c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002260c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002260c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002260d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002260d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002260d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002260d 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002260d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002260e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002260e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002260e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002260e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002260e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002260f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002260f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002260f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002260f 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002260f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022610 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022610 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022610 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022610 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022610 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022611 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022611 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022606 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022606 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027d8 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022611 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022611 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022611 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028c8 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028d0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027e0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022611 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027e0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028d0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022611 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028d0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022611 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022611 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022611 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022611 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022611 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027e0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022611 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022611 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022611 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022612 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022612 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022612 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022612 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022612 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022613 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022613 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022613 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022613 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022613 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022614 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022614 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022614 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022614 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022614 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022615 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022615 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022615 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022615 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022615 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022616 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022616 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022616 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022616 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022616 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022617 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022617 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022617 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022617 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022617 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022618 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022618 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022618 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022618 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022618 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022619 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022619 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022619 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022619 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022619 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002261a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002261a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002261a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002261a 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002261a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002261b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002261b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002261b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002261b 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002261b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002261c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002261c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022611 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022611 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027e0 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002261c mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002261c 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002261c mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028d0 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028d8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027e8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002261c +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027e8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028d8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002261c +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028d8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x000000008002261c +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002261c +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x000000008002261c +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x000000008002261c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x000000008002261c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027e8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002261c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002261c 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002261c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002261d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002261d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002261d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002261d 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002261d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002261e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002261e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002261e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002261e 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002261e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002261f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002261f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002261f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002261f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002261f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022620 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022620 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022620 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022620 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022620 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022621 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022621 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022621 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022621 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022621 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022622 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022622 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022622 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022622 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022622 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022623 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022623 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022623 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022623 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022623 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022624 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022624 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022624 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022624 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022624 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022625 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022625 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022625 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022625 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022625 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022626 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022626 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022626 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022626 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022626 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022627 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022627 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002261c mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002261c mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027e8 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022627 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022627 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022627 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028d8 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028e0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027f0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022627 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027f0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028e0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022627 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028e0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022627 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022627 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022627 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022627 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022627 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027f0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022627 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022627 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022627 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022628 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022628 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022628 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022628 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022628 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022629 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022629 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022629 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022629 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022629 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002262a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002262a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002262a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002262a 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002262a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002262b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002262b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002262b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002262b 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002262b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002262c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002262c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002262c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002262c 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002262c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002262d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002262d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002262d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002262d 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002262d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002262e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002262e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002262e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002262e 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002262e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002262f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002262f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002262f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002262f 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002262f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022630 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022630 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022630 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022630 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022630 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022631 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022631 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022631 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022631 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022631 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022632 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022632 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022627 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022627 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027f0 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022632 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022632 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022632 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028e0 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028e8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800027f8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022632 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800027f8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028e8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022632 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028e8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022632 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022632 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022632 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022632 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022632 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x00000000800027f8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022632 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022632 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022632 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022633 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022633 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022633 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022633 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022633 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022634 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022634 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022634 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022634 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022634 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022635 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022635 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022635 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022635 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022635 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022636 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022636 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022636 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022636 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022636 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022637 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022637 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022637 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022637 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022637 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022638 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022638 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022638 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022638 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022638 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022639 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022639 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022639 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022639 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022639 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002263a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002263a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002263a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002263a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002263a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002263b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002263b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002263b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002263b 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002263b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002263c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002263c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002263c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002263c 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002263c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002263d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002263d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022632 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022632 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800027f8 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002263d mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002263d 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002263d mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028e8 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028f0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002800 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002263d +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002800 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028f0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002263d +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028f0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x000000008002263d +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002263d +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x000000008002263d +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x000000008002263d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x000000008002263d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002800 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002263d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002263d 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002263d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002263e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002263e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002263e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002263e 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002263e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002263f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002263f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002263f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002263f 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002263f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022640 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022640 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022640 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022640 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022640 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022641 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022641 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022641 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022641 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022641 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022642 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022642 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022642 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022642 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022642 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022643 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022643 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022643 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022643 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022643 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022644 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022644 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022644 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022644 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022644 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022645 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022645 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022645 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022645 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022645 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022646 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022646 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022646 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022646 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022646 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022647 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022647 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022647 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022647 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022647 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022648 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022648 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002263d mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002263d mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002800 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022648 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022648 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022648 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028f0 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800028f8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002808 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022648 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002808 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800028f8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022648 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x00000000800028f8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022648 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022648 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022648 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022648 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022648 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002808 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022648 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022648 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022648 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022649 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022649 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022649 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022649 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022649 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002264a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002264a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002264a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002264a 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002264a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002264b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002264b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002264b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002264b 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002264b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002264c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002264c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002264c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002264c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002264c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002264d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002264d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002264d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002264d 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002264d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002264e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002264e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002264e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002264e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002264e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002264f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002264f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002264f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002264f 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002264f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022650 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022650 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022650 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022650 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022650 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022651 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022651 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022651 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022651 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022651 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022652 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022652 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022652 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022652 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022652 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022653 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022653 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022648 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022648 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002808 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022653 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022653 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022653 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800028f8 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002900 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002810 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022653 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002810 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002900 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022653 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002900 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022653 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022653 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022653 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022653 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022653 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002810 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022653 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022653 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022653 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022654 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022654 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022654 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022654 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022654 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022655 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022655 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022655 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022655 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022655 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022656 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022656 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022656 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022656 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022656 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022657 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022657 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022657 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022657 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022657 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022658 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022658 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022658 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022658 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022658 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022659 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022659 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022659 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022659 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022659 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002265a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002265a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002265a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002265a 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002265a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002265b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002265b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002265b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002265b 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002265b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002265c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002265c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002265c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002265c 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002265c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002265d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002265d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002265d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002265d 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002265d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002265e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002265e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022653 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022653 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002810 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002265e mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002265e 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002265e mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002900 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002908 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002818 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002265e +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002818 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002908 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002265e +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002908 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x000000008002265e +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002265e +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x000000008002265e +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x000000008002265e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x000000008002265e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002818 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002265e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002265e 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002265e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002265f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002265f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002265f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002265f 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002265f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022660 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022660 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022660 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022660 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022660 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022661 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022661 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022661 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022661 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022661 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022662 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022662 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022662 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022662 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022662 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022663 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022663 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022663 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022663 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022663 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022664 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022664 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022664 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022664 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022664 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022665 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022665 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022665 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022665 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022665 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022666 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022666 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022666 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022666 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022666 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022667 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022667 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022667 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022667 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022667 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022668 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022668 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022668 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022668 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022668 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022669 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022669 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002265e mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002265e mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002818 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022669 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022669 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022669 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002908 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002910 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002820 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022669 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002820 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002910 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022669 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002910 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022669 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022669 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022669 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022669 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022669 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002820 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022669 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022669 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022669 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002266a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002266a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002266a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002266a 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002266a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002266b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002266b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002266b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002266b 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002266b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002266c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002266c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002266c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002266c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002266c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002266d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002266d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002266d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002266d 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002266d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002266e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002266e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002266e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002266e 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002266e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002266f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002266f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002266f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002266f 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002266f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022670 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022670 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022670 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022670 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022670 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022671 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022671 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022671 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022671 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022671 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022672 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022672 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022672 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022672 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022672 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022673 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022673 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022673 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022673 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022673 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022674 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022674 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022669 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022669 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002820 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022674 mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022674 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022674 mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002910 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002918 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002828 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022674 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002828 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002918 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022674 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002918 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x0000000080022674 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022674 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x0000000080022674 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x0000000080022674 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x0000000080022674 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002828 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022674 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022674 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022674 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022675 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022675 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022675 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022675 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022675 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022676 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022676 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022676 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022676 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022676 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022677 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022677 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022677 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022677 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022677 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022678 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022678 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022678 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022678 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022678 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022679 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022679 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022679 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022679 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022679 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002267a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002267a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002267a mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002267a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002267a mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002267b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002267b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002267b mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002267b 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002267b mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002267c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002267c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002267c mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002267c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002267c mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002267d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002267d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002267d mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002267d 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002267d mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002267e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002267e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002267e mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002267e 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002267e mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002267f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002267f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022674 mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022674 mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002828 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002267f mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002267f 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002267f mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002918 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002920 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002830 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002267f +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002830 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002920 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002267f +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xa3c58593) addi a1, a1, -1476 +core 0: 3 0x0000000080001d00 (0xa3c58593) x11 0x0000000080002738 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x00000000800224b0 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800224e0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x00000000800224d0 0x0000000080002920 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x00000000800224b8 0x000000008002267f +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002267f +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002738 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x00000000800224b8 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800224e0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x00000000800224d8 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800224f8 0x000000008002267f +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022500 0x00000000800021c0 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022508 0x00000000800021bc +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x00000000800224c8 0x00000000800224e0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022350 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x00000000800224a0 0x000000008002267f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022498 0x000000008002267f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022490 0x0000000080002830 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022480 0x0000000080022540 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022478 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022470 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022468 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x00000000800224a8 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022488 0x0000000080002928 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022460 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022458 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022450 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002738 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800224e0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x00000000800224b8 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x9b018a93) addi s5, gp, -1616 +core 0: 3 0x000000008000104c (0x9b018a93) x21 0x0000000080002358 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002738 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002739 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002739 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002739 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002498 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffef44 mem 0x0000000080002498 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800224e0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800224e8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x140c0c13) addi s8, s8, 320 +core 0: 3 0x0000000080001374 (0x140c0c13) x24 0x00000000800024b0 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002267f mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002267f 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002267f mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022680 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022680 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800024b1 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b1 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022680 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022680 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022680 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022681 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022681 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800024b2 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b2 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022681 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022681 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022681 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022682 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022682 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b3 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b3 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022682 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022682 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022682 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022683 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022683 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800024b4 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b4 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022683 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022683 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022683 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022684 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022684 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800024b5 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b5 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x00000000800224b8 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022684 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022684 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022684 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022685 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022685 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800024b6 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800024b6 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022685 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022685 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022685 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022686 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022686 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000273b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022686 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022686 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022686 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022687 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022687 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000273c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000273d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022687 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022687 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022687 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022688 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022688 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000273d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000273e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000273e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000273e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000273f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800024a0 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffefec mem 0x00000000800024a0 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800224f0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800224e8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800224f0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080022354 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080022350 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080022350 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x000000008002234c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022350 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x00000000800224b8 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x000000008002234c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022688 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022688 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022688 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022689 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x0000000080022689 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000273f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x00000000800224b8 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002740 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022689 mem 0x00000000800224b8 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022689 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022689 mem 0x00000000800224b8 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002268a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x00000000800224b8 0x000000008002268a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002740 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x00000000800224a8 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002267f mem 0x00000000800224a0 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002267f mem 0x0000000080022498 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002830 mem 0x0000000080022490 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002928 mem 0x0000000080022488 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022540 mem 0x0000000080022480 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022478 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022470 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022468 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022460 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022458 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022450 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x00000000800224b0 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002268a mem 0x00000000800224b8 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002268a 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002268a mem 0x00000000800224b8 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x00000000800224d8 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002920 mem 0x00000000800224d0 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022510 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002928 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002838 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002268a +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001d18 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d18 (0x009a0663) +core 0: 0x0000000080001d1c (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d1c (0x000a0513) x10 0x0000000080022540 +core 0: 0x0000000080001d20 (0xbf1ff0ef) jal pc - 0x410 +core 0: 3 0x0000000080001d20 (0xbf1ff0ef) x1 0x0000000080001d24 +core 0: >>>> printstr +core 0: 0x0000000080001910 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x0000000080001910 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022540 +core 0: 0x0000000080001914 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001914 (0xf9010113) x2 0x00000000800224a0 +core 0: 0x0000000080001918 (0x03f10693) addi a3, sp, 63 +core 0: 3 0x0000000080001918 (0x03f10693) x13 0x00000000800224df +core 0: 0x000000008000191c (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x000000008000191c (0xfc06f693) x13 0x00000000800224c0 +core 0: 0x0000000080001920 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001920 (0x00078c63) +core 0: 0x0000000080001924 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001924 (0x00050793) x15 0x0000000080022540 +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022541 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022541 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022542 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022542 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022543 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022543 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022544 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022544 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022545 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022545 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022546 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022546 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022547 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022547 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022548 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022548 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022549 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022549 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002254a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002254a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002254b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002254b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002254c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002254c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002254d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002254d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002254e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002254e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002254f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002254f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022550 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022550 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022551 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022551 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022552 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022552 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022553 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022553 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022554 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022554 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022555 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022555 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022556 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022556 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022557 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022557 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022558 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022558 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022559 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022559 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002255a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002255a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002255b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002255b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002255c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002255c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002255d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002255d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002255e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002255e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002255f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002255f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022560 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022560 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022561 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022561 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022562 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022562 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022563 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022563 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022564 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022564 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022565 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022565 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022566 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022566 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022567 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022567 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022568 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022568 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022569 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022569 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002256a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002256a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002256b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002256b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002256c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002256c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002256d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002256d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002256e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002256e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002256f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002256f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022570 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022570 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022571 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022571 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022572 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022572 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022573 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022573 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022574 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022574 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022575 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022575 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022576 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022576 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022577 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022577 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022578 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022578 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022579 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022579 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002257a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002257a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002257b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002257b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002257c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002257c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002257d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002257d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002257e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002257e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002257f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002257f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022580 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022580 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022581 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022581 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022582 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022582 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022583 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022583 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022584 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022584 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022585 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022585 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022586 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022586 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022587 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022587 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022588 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022588 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022589 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022589 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002258a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002258a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002258b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002258b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002258c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002258c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002258d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002258d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002258e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002258e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002258f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002258f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022590 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022590 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022591 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022591 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022592 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022592 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022593 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022593 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022594 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022594 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022595 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022595 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022596 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022596 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022597 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022597 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022598 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022598 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022599 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022599 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002259a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002259a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002259b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002259b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002259c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002259c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002259d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002259d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002259e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002259e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002259f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002259f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225a0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225a1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225a2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225a3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225a4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225a5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225a6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225a7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225a8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225a9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225a9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225aa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225aa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225ab +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ab +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225ac +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ac +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225ad +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ad +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225ae +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ae +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225af +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225af +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225b0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225b1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225b2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225b3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225b4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225b5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225b6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225b7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225b8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225b9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225b9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225ba +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ba +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225bb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225bb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225bc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225bc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225bd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225bd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225be +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225be +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225bf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225bf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225c0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225c1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225c2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225c3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225c4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225c5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225c6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225c7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225c8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225c9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225c9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225ca +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ca +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225cb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225cb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225cc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225cc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225cd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225cd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225ce +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ce +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225cf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225cf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225d0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225d1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225d2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225d3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225d4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225d5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225d6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225d7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225d8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225d9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225d9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225da +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225da +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225db +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225db +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225dc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225dc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225dd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225dd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225de +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225de +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225df +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225df +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225e0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225e1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225e2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225e3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225e4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225e5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225e6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225e7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225e8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225e9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225e9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225ea +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ea +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225eb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225eb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225ec +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ec +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225ed +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ed +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225ee +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ee +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225ef +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ef +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225f0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225f1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225f2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225f3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225f4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800225f5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225f6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800225f7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800225f8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800225f9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225f9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800225fa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225fa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800225fb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225fb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800225fc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225fc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800225fd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225fd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225fe +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225fe +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800225ff +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800225ff +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022600 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022600 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022601 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022601 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022602 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022602 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022603 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022603 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022604 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022604 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022605 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022605 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022606 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022606 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022607 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022607 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022608 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022608 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022609 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022609 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002260a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002260a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002260b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002260b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002260c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002260c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002260d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002260d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002260e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002260e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002260f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002260f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022610 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022610 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022611 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022611 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022612 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022612 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022613 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022613 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022614 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022614 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022615 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022615 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022616 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022616 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022617 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022617 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022618 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022618 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022619 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022619 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002261a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002261a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002261b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002261b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002261c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002261c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002261d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002261d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002261e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002261e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002261f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002261f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022620 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022620 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022621 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022621 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022622 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022622 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022623 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022623 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022624 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022624 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022625 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022625 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022626 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022626 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022627 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022627 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022628 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022628 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022629 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022629 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002262a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002262a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002262b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002262b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002262c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002262c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002262d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002262d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002262e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002262e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002262f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002262f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022630 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022630 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022631 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022631 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022632 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022632 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022633 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022633 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022634 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022634 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022635 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022635 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022636 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022636 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022637 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022637 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022638 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022638 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022639 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022639 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002263a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002263a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002263b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002263b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002263c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002263c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002263d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002263d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002263e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002263e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002263f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002263f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022640 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022640 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022641 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022641 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022642 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022642 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022643 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022643 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022644 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022644 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022645 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022645 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022646 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022646 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022647 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022647 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022648 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022648 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022649 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022649 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002264a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002264a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002264b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002264b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002264c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002264c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002264d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002264d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002264e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002264e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002264f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002264f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022650 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022650 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022651 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022651 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022652 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022652 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022653 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022653 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022654 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022654 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022655 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022655 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022656 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022656 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022657 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022657 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022658 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022658 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022659 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022659 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002265a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002265a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002265b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002265b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002265c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002265c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002265d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002265d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002265e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002265e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002265f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002265f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022660 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022660 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022661 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022661 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022662 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022662 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022663 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022663 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022664 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022664 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022665 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022665 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022666 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022666 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022667 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022667 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022668 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022668 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022669 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022669 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002266a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002266a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002266b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002266b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002266c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002266c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002266d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002266d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002266e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002266e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002266f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002266f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022670 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022670 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022671 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022671 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022672 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022672 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022673 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022673 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022674 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022674 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022675 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022675 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022676 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022676 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022677 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022677 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022678 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022678 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022679 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022679 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002267a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002267a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002267b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002267b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002267c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002267c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002267d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002267d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002267e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002267e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002267f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002267f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022680 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022680 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022681 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022681 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022682 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022682 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022683 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022683 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022684 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022684 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022685 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022685 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022686 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022686 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022687 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022687 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022688 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022688 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022689 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022689 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000000 mem 0x000000008002268a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002268a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001934 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x0000000080001934 (0x40a787b3) x15 0x000000000000014a +core 0: 0x0000000080001938 (0x04000713) li a4, 64 +core 0: 3 0x0000000080001938 (0x04000713) x14 0x0000000000000040 +core 0: 0x000000008000193c (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x000000008000193c (0x00e6b023) mem 0x00000000800224c0 0x0000000000000040 +core 0: 0x0000000080001940 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001940 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001944 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x0000000080001944 (0x00e6b423) mem 0x00000000800224c8 0x0000000000000001 +core 0: 0x0000000080001948 (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x0000000080001948 (0x00a6b823) mem 0x00000000800224d0 0x0000000080022540 +core 0: 0x000000008000194c (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x000000008000194c (0x00f6bc23) mem 0x00000000800224d8 0x000000000000014a +core 0: 0x0000000080001950 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001950 (0x0330000f) +core 0: 0x0000000080001954 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001954 (0xbfffe717) x14 0x000000003ffff954 +core 0: 0x0000000080001958 (0x6ec70713) addi a4, a4, 1772 +core 0: 3 0x0000000080001958 (0x6ec70713) x14 0x0000000040000040 +core 0: 0x000000008000195c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000195c (0xbfffe797) x15 0x000000003ffff95c +core 0: 0x0000000080001960 (0x6ad7b223) sd a3, 1700(a5) +core 0: 3 0x0000000080001960 (0x6ad7b223) mem 0x0000000040000000 0x00000000800224c0 +core 0: 0x0000000080001964 (0x00073783) ld a5, 0(a4) +core 0: 3 0x0000000080001964 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x0000000080001968 (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x0000000080001968 (0xfe078ee3) +core 0: 0x000000008000196c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000196c (0xbfffe797) x15 0x000000003ffff96c +core 0: 0x0000000080001970 (0x6c07ba23) sd zero, 1748(a5) +core 0: 3 0x0000000080001970 (0x6c07ba23) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x0000000080001974 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001974 (0x0330000f) +core 0: 0x0000000080001978 (0x0006b783) ld a5, 0(a3) +core 0: 3 0x0000000080001978 (0x0006b783) x15 0x0000000000000040 mem 0x00000000800224c0 +core 0: 0x000000008000197c (0x07010113) addi sp, sp, 112 +core 0: 3 0x000000008000197c (0x07010113) x2 0x0000000080022510 +core 0: 0x0000000080001980 (0x00008067) ret +core 0: 3 0x0000000080001980 (0x00008067) +core 0: 0x0000000080001d24 (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d24 (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d28 (0xba5ff0ef) jal pc - 0x45c +core 0: 3 0x0000000080001d28 (0xba5ff0ef) x1 0x0000000080001d2c +core 0: >>>> tohost_exit +core 0: 0x00000000800018cc (0x00151793) slli a5, a0, 1 +core 0: 3 0x00000000800018cc (0x00151793) x15 0x0000000000000000 +core 0: 0x00000000800018d0 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x00000000800018d0 (0x0017e793) x15 0x0000000000000001 +core 0: 0x00000000800018d4 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x00000000800018d4 (0xbfffe717) x14 0x000000003ffff8d4 +core 0: 0x00000000800018d8 (0x72f73623) sd a5, 1836(a4) +core 0: 3 0x00000000800018d8 (0x72f73623) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x00000000800018dc (0x0000006f) j pc + 0x0 +core 0: 3 0x00000000800018dc (0x0000006f) diff --git a/traces/with_zfhmin.txt b/traces/with_zfhmin.txt new file mode 100644 index 0000000..91e64b1 --- /dev/null +++ b/traces/with_zfhmin.txt @@ -0,0 +1,20339 @@ +core 0: 0x0000000000000100 (0x0010041b) addiw s0, zero, 1 +core 0: 3 0x0000000000000100 (0x0010041b) x8 0x0000000000000001 +core 0: 0x0000000000000104 (0x01f41413) slli s0, s0, 31 +core 0: 3 0x0000000000000104 (0x01f41413) x8 0x0000000080000000 +core 0: 0x0000000000000108 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000000000108 (0xf1402573) x10 0x0000000000000000 +core 0: 0x000000000000010c (0x18000593) li a1, 384 +core 0: 3 0x000000000000010c (0x18000593) x11 0x0000000000000180 +core 0: 0x0000000000000110 (0x00040067) jr s0 +core 0: 3 0x0000000000000110 (0x00040067) +core 0: >>>> _start +core 0: 0x0000000080000000 (0x00000093) li ra, 0 +core 0: 3 0x0000000080000000 (0x00000093) x1 0x0000000000000000 +core 0: 0x0000000080000004 (0x00000113) li sp, 0 +core 0: 3 0x0000000080000004 (0x00000113) x2 0x0000000000000000 +core 0: 0x0000000080000008 (0x00000193) li gp, 0 +core 0: 3 0x0000000080000008 (0x00000193) x3 0x0000000000000000 +core 0: 0x000000008000000c (0x00000213) li tp, 0 +core 0: 3 0x000000008000000c (0x00000213) x4 0x0000000000000000 +core 0: 0x0000000080000010 (0x00000293) li t0, 0 +core 0: 3 0x0000000080000010 (0x00000293) x5 0x0000000000000000 +core 0: 0x0000000080000014 (0x00000313) li t1, 0 +core 0: 3 0x0000000080000014 (0x00000313) x6 0x0000000000000000 +core 0: 0x0000000080000018 (0x00000393) li t2, 0 +core 0: 3 0x0000000080000018 (0x00000393) x7 0x0000000000000000 +core 0: 0x000000008000001c (0x00000413) li s0, 0 +core 0: 3 0x000000008000001c (0x00000413) x8 0x0000000000000000 +core 0: 0x0000000080000020 (0x00000493) li s1, 0 +core 0: 3 0x0000000080000020 (0x00000493) x9 0x0000000000000000 +core 0: 0x0000000080000024 (0x00000513) li a0, 0 +core 0: 3 0x0000000080000024 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080000028 (0x00000593) li a1, 0 +core 0: 3 0x0000000080000028 (0x00000593) x11 0x0000000000000000 +core 0: 0x000000008000002c (0x00000613) li a2, 0 +core 0: 3 0x000000008000002c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080000030 (0x00000693) li a3, 0 +core 0: 3 0x0000000080000030 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080000034 (0x00000713) li a4, 0 +core 0: 3 0x0000000080000034 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080000038 (0x00000793) li a5, 0 +core 0: 3 0x0000000080000038 (0x00000793) x15 0x0000000000000000 +core 0: 0x000000008000003c (0x00000813) li a6, 0 +core 0: 3 0x000000008000003c (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080000040 (0x00000893) li a7, 0 +core 0: 3 0x0000000080000040 (0x00000893) x17 0x0000000000000000 +core 0: 0x0000000080000044 (0x00000913) li s2, 0 +core 0: 3 0x0000000080000044 (0x00000913) x18 0x0000000000000000 +core 0: 0x0000000080000048 (0x00000993) li s3, 0 +core 0: 3 0x0000000080000048 (0x00000993) x19 0x0000000000000000 +core 0: 0x000000008000004c (0x00000a13) li s4, 0 +core 0: 3 0x000000008000004c (0x00000a13) x20 0x0000000000000000 +core 0: 0x0000000080000050 (0x00000a93) li s5, 0 +core 0: 3 0x0000000080000050 (0x00000a93) x21 0x0000000000000000 +core 0: 0x0000000080000054 (0x00000b13) li s6, 0 +core 0: 3 0x0000000080000054 (0x00000b13) x22 0x0000000000000000 +core 0: 0x0000000080000058 (0x00000b93) li s7, 0 +core 0: 3 0x0000000080000058 (0x00000b93) x23 0x0000000000000000 +core 0: 0x000000008000005c (0x00000c13) li s8, 0 +core 0: 3 0x000000008000005c (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080000060 (0x00000c93) li s9, 0 +core 0: 3 0x0000000080000060 (0x00000c93) x25 0x0000000000000000 +core 0: 0x0000000080000064 (0x00000d13) li s10, 0 +core 0: 3 0x0000000080000064 (0x00000d13) x26 0x0000000000000000 +core 0: 0x0000000080000068 (0x00000d93) li s11, 0 +core 0: 3 0x0000000080000068 (0x00000d93) x27 0x0000000000000000 +core 0: 0x000000008000006c (0x00000e13) li t3, 0 +core 0: 3 0x000000008000006c (0x00000e13) x28 0x0000000000000000 +core 0: 0x0000000080000070 (0x00000e93) li t4, 0 +core 0: 3 0x0000000080000070 (0x00000e93) x29 0x0000000000000000 +core 0: 0x0000000080000074 (0x00000f13) li t5, 0 +core 0: 3 0x0000000080000074 (0x00000f13) x30 0x0000000000000000 +core 0: 0x0000000080000078 (0x00000f93) li t6, 0 +core 0: 3 0x0000000080000078 (0x00000f93) x31 0x0000000000000000 +core 0: 0x000000008000007c (0x0001e2b7) lui t0, 0x1e +core 0: 3 0x000000008000007c (0x0001e2b7) x5 0x000000000001e000 +core 0: 0x0000000080000080 (0x6002829b) addiw t0, t0, 1536 +core 0: 3 0x0000000080000080 (0x6002829b) x5 0x000000000001e600 +core 0: 0x0000000080000084 (0x3002a073) csrs mstatus, t0 +core 0: 3 0x0000000080000084 (0x3002a073) c768_mstatus 0x8000000a00006000 +core 0: 0x0000000080000088 (0x00100293) li t0, 1 +core 0: 3 0x0000000080000088 (0x00100293) x5 0x0000000000000001 +core 0: 0x000000008000008c (0x01f29293) slli t0, t0, 31 +core 0: 3 0x000000008000008c (0x01f29293) x5 0x0000000080000000 +core 0: 0x0000000080000090 (0x0002da63) bgez t0, pc + 20 +core 0: 3 0x0000000080000090 (0x0002da63) +core 0: 0x00000000800000a4 (0x00000297) auipc t0, 0x0 +core 0: 3 0x00000000800000a4 (0x00000297) x5 0x00000000800000a4 +core 0: 0x00000000800000a8 (0x09028293) addi t0, t0, 144 +core 0: 3 0x00000000800000a8 (0x09028293) x5 0x0000000080000134 +core 0: 0x00000000800000ac (0x30529073) csrw mtvec, t0 +core 0: 3 0x00000000800000ac (0x30529073) c773_mtvec 0x0000000080000134 +core 0: 0x00000000800000b0 (0x00301073) csrw fcsr, zero +core 0: 3 0x00000000800000b0 (0x00301073) c1_fflags 0x0000000000000000 c2_frm 0x0000000000000000 +core 0: 0x00000000800000b4 (0xf0000053) fmv.w.x ft0, zero +core 0: 3 0x00000000800000b4 (0xf0000053) f0 0xffffffff00000000 +core 0: 0x00000000800000b8 (0xf00000d3) fmv.w.x ft1, zero +core 0: 3 0x00000000800000b8 (0xf00000d3) f1 0xffffffff00000000 +core 0: 0x00000000800000bc (0xf0000153) fmv.w.x ft2, zero +core 0: 3 0x00000000800000bc (0xf0000153) f2 0xffffffff00000000 +core 0: 0x00000000800000c0 (0xf00001d3) fmv.w.x ft3, zero +core 0: 3 0x00000000800000c0 (0xf00001d3) f3 0xffffffff00000000 +core 0: 0x00000000800000c4 (0xf0000253) fmv.w.x ft4, zero +core 0: 3 0x00000000800000c4 (0xf0000253) f4 0xffffffff00000000 +core 0: 0x00000000800000c8 (0xf00002d3) fmv.w.x ft5, zero +core 0: 3 0x00000000800000c8 (0xf00002d3) f5 0xffffffff00000000 +core 0: 0x00000000800000cc (0xf0000353) fmv.w.x ft6, zero +core 0: 3 0x00000000800000cc (0xf0000353) f6 0xffffffff00000000 +core 0: 0x00000000800000d0 (0xf00003d3) fmv.w.x ft7, zero +core 0: 3 0x00000000800000d0 (0xf00003d3) f7 0xffffffff00000000 +core 0: 0x00000000800000d4 (0xf0000453) fmv.w.x fs0, zero +core 0: 3 0x00000000800000d4 (0xf0000453) f8 0xffffffff00000000 +core 0: 0x00000000800000d8 (0xf00004d3) fmv.w.x fs1, zero +core 0: 3 0x00000000800000d8 (0xf00004d3) f9 0xffffffff00000000 +core 0: 0x00000000800000dc (0xf0000553) fmv.w.x fa0, zero +core 0: 3 0x00000000800000dc (0xf0000553) f10 0xffffffff00000000 +core 0: 0x00000000800000e0 (0xf00005d3) fmv.w.x fa1, zero +core 0: 3 0x00000000800000e0 (0xf00005d3) f11 0xffffffff00000000 +core 0: 0x00000000800000e4 (0xf0000653) fmv.w.x fa2, zero +core 0: 3 0x00000000800000e4 (0xf0000653) f12 0xffffffff00000000 +core 0: 0x00000000800000e8 (0xf00006d3) fmv.w.x fa3, zero +core 0: 3 0x00000000800000e8 (0xf00006d3) f13 0xffffffff00000000 +core 0: 0x00000000800000ec (0xf0000753) fmv.w.x fa4, zero +core 0: 3 0x00000000800000ec (0xf0000753) f14 0xffffffff00000000 +core 0: 0x00000000800000f0 (0xf00007d3) fmv.w.x fa5, zero +core 0: 3 0x00000000800000f0 (0xf00007d3) f15 0xffffffff00000000 +core 0: 0x00000000800000f4 (0xf0000853) fmv.w.x fa6, zero +core 0: 3 0x00000000800000f4 (0xf0000853) f16 0xffffffff00000000 +core 0: 0x00000000800000f8 (0xf00008d3) fmv.w.x fa7, zero +core 0: 3 0x00000000800000f8 (0xf00008d3) f17 0xffffffff00000000 +core 0: 0x00000000800000fc (0xf0000953) fmv.w.x fs2, zero +core 0: 3 0x00000000800000fc (0xf0000953) f18 0xffffffff00000000 +core 0: 0x0000000080000100 (0xf00009d3) fmv.w.x fs3, zero +core 0: 3 0x0000000080000100 (0xf00009d3) f19 0xffffffff00000000 +core 0: 0x0000000080000104 (0xf0000a53) fmv.w.x fs4, zero +core 0: 3 0x0000000080000104 (0xf0000a53) f20 0xffffffff00000000 +core 0: 0x0000000080000108 (0xf0000ad3) fmv.w.x fs5, zero +core 0: 3 0x0000000080000108 (0xf0000ad3) f21 0xffffffff00000000 +core 0: 0x000000008000010c (0xf0000b53) fmv.w.x fs6, zero +core 0: 3 0x000000008000010c (0xf0000b53) f22 0xffffffff00000000 +core 0: 0x0000000080000110 (0xf0000bd3) fmv.w.x fs7, zero +core 0: 3 0x0000000080000110 (0xf0000bd3) f23 0xffffffff00000000 +core 0: 0x0000000080000114 (0xf0000c53) fmv.w.x fs8, zero +core 0: 3 0x0000000080000114 (0xf0000c53) f24 0xffffffff00000000 +core 0: 0x0000000080000118 (0xf0000cd3) fmv.w.x fs9, zero +core 0: 3 0x0000000080000118 (0xf0000cd3) f25 0xffffffff00000000 +core 0: 0x000000008000011c (0xf0000d53) fmv.w.x fs10, zero +core 0: 3 0x000000008000011c (0xf0000d53) f26 0xffffffff00000000 +core 0: 0x0000000080000120 (0xf0000dd3) fmv.w.x fs11, zero +core 0: 3 0x0000000080000120 (0xf0000dd3) f27 0xffffffff00000000 +core 0: 0x0000000080000124 (0xf0000e53) fmv.w.x ft8, zero +core 0: 3 0x0000000080000124 (0xf0000e53) f28 0xffffffff00000000 +core 0: 0x0000000080000128 (0xf0000ed3) fmv.w.x ft9, zero +core 0: 3 0x0000000080000128 (0xf0000ed3) f29 0xffffffff00000000 +core 0: 0x000000008000012c (0xf0000f53) fmv.w.x ft10, zero +core 0: 3 0x000000008000012c (0xf0000f53) f30 0xffffffff00000000 +core 0: 0x0000000080000130 (0xf0000fd3) fmv.w.x ft11, zero +core 0: 3 0x0000000080000130 (0xf0000fd3) f31 0xffffffff00000000 +core 0: 0x0000000080000134 (0x00000297) auipc t0, 0x0 +core 0: 3 0x0000000080000134 (0x00000297) x5 0x0000000080000134 +core 0: 0x0000000080000138 (0x04428293) addi t0, t0, 68 +core 0: 3 0x0000000080000138 (0x04428293) x5 0x0000000080000178 +core 0: 0x000000008000013c (0x30529073) csrw mtvec, t0 +core 0: 3 0x000000008000013c (0x30529073) c773_mtvec 0x0000000080000178 +core 0: 0x0000000080000140 (0x00002197) auipc gp, 0x2 +core 0: 3 0x0000000080000140 (0x00002197) x3 0x0000000080002140 +core 0: 0x0000000080000144 (0x5e018193) addi gp, gp, 1504 +core 0: 3 0x0000000080000144 (0x5e018193) x3 0x0000000080002720 +core 0: 0x0000000080000148 (0x00002217) auipc tp, 0x2 +core 0: 3 0x0000000080000148 (0x00002217) x4 0x0000000080002148 +core 0: 0x000000008000014c (0x3f720213) addi tp, tp, 1015 +core 0: 3 0x000000008000014c (0x3f720213) x4 0x000000008000253f +core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002500 +core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 +core 0: 0x0000000080000158 (0x00100593) li a1, 1 +core 0: 3 0x0000000080000158 (0x00100593) x11 0x0000000000000001 +core 0: 0x000000008000015c (0x00b57063) bgeu a0, a1, pc + 0 +core 0: 3 0x000000008000015c (0x00b57063) +core 0: 0x0000000080000160 (0x00150113) addi sp, a0, 1 +core 0: 3 0x0000000080000160 (0x00150113) x2 0x0000000000000001 +core 0: 0x0000000080000164 (0x01111113) slli sp, sp, 17 +core 0: 3 0x0000000080000164 (0x01111113) x2 0x0000000000020000 +core 0: 0x0000000080000168 (0x00410133) add sp, sp, tp +core 0: 3 0x0000000080000168 (0x00410133) x2 0x0000000080022500 +core 0: 0x000000008000016c (0x01151613) slli a2, a0, 17 +core 0: 3 0x000000008000016c (0x01151613) x12 0x0000000000000000 +core 0: 0x0000000080000170 (0x00c20233) add tp, tp, a2 +core 0: 3 0x0000000080000170 (0x00c20233) x4 0x0000000080002500 +core 0: 0x0000000080000174 (0x2690106f) j pc + 0x1a68 +core 0: 3 0x0000000080000174 (0x2690106f) +core 0: >>>> _init +core 0: 0x0000000080001bdc (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001bdc (0xbd010113) x2 0x00000000800220d0 +core 0: 0x0000000080001be0 (0xde018613) addi a2, gp, -544 +core 0: 3 0x0000000080001be0 (0xde018613) x12 0x0000000080002500 +core 0: 0x0000000080001be4 (0xde018793) addi a5, gp, -544 +core 0: 3 0x0000000080001be4 (0xde018793) x15 0x0000000080002500 +core 0: 0x0000000080001be8 (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001be8 (0x41413023) mem 0x00000000800224d0 0x0000000000000000 +core 0: 0x0000000080001bec (0x40f60833) sub a6, a2, a5 +core 0: 3 0x0000000080001bec (0x40f60833) x16 0x0000000000000000 +core 0: 0x0000000080001bf0 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001bf0 (0x03f10a13) x20 0x000000008002210f +core 0: 0x0000000080001bf4 (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001bf4 (0x42813023) mem 0x00000000800224f0 0x0000000000000000 +core 0: 0x0000000080001bf8 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001bf8 (0x40913c23) mem 0x00000000800224e8 0x0000000000000000 +core 0: 0x0000000080001bfc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001bfc (0x00050413) x8 0x0000000000000000 +core 0: 0x0000000080001c00 (0x00058493) mv s1, a1 +core 0: 3 0x0000000080001c00 (0x00058493) x9 0x0000000000000001 +core 0: 0x0000000080001c04 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c04 (0x42113423) mem 0x00000000800224f8 0x0000000000000000 +core 0: 0x0000000080001c08 (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c08 (0x41213823) mem 0x00000000800224e0 0x0000000000000000 +core 0: 0x0000000080001c0c (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c0c (0x41313423) mem 0x00000000800224d8 0x0000000000000000 +core 0: 0x0000000080001c10 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c10 (0x3f513c23) mem 0x00000000800224c8 0x0000000000000000 +core 0: 0x0000000080001c14 (0x00080593) mv a1, a6 +core 0: 3 0x0000000080001c14 (0x00080593) x11 0x0000000000000000 +core 0: 0x0000000080001c18 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c18 (0xfc0a7a13) x20 0x0000000080022100 +core 0: 0x0000000080001c1c (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c1c (0x00020513) x10 0x0000000080002500 +core 0: 0x0000000080001c20 (0x00020693) mv a3, tp +core 0: 3 0x0000000080001c20 (0x00020693) x13 0x0000000080002500 +core 0: 0x0000000080001c24 (0x0c05f757) vsetvli a4, a1, e8, m1, ta, ma +core 0: 3 0x0000000080001c24 (0x0c05f757) x14 0x0000000000000000 +core 0: 0x0000000080001c28 (0x02078087) vle8.v v1, (a5) +core 0: 3 0x0000000080001c28 (0x02078087) mem 0x0000000000000000 +core 0: 0x0000000080001c2c (0x40e585b3) sub a1, a1, a4 +core 0: 3 0x0000000080001c2c (0x40e585b3) x11 0x0000000000000000 +core 0: 0x0000000080001c30 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c30 (0x00e787b3) x15 0x0000000080002500 +core 0: 0x0000000080001c34 (0x020680a7) vse8.v v1, (a3) +core 0: 3 0x0000000080001c34 (0x020680a7) mem 0x0000000000000000 0x00 +core 0: 0x0000000080001c38 (0x00e686b3) add a3, a3, a4 +core 0: 3 0x0000000080001c38 (0x00e686b3) x13 0x0000000080002500 +core 0: 0x0000000080001c3c (0xfe0594e3) bnez a1, pc - 24 +core 0: 3 0x0000000080001c3c (0xfe0594e3) +core 0: 0x0000000080001c40 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001c40 (0x00001797) x15 0x0000000080002c40 +core 0: 0x0000000080001c44 (0x90478793) addi a5, a5, -1788 +core 0: 3 0x0000000080001c44 (0x90478793) x15 0x0000000080002544 +core 0: 0x0000000080001c48 (0x01050533) add a0, a0, a6 +core 0: 3 0x0000000080001c48 (0x01050533) x10 0x0000000080002500 +core 0: 0x0000000080001c4c (0x40c78633) sub a2, a5, a2 +core 0: 3 0x0000000080001c4c (0x40c78633) x12 0x0000000000000044 +core 0: 0x0000000080001c50 (0xf21ff0ef) jal pc - 0xe0 +core 0: 3 0x0000000080001c50 (0xf21ff0ef) x1 0x0000000080001c54 +core 0: >>>> memset +core 0: 0x0000000080001b70 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b70 (0x00c567b3) x15 0x0000000080002544 +core 0: 0x0000000080001b74 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b74 (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b78 (0x00c50733) add a4, a0, a2 +core 0: 3 0x0000000080001b78 (0x00c50733) x14 0x0000000080002544 +core 0: 0x0000000080001b7c (0x02078663) beqz a5, pc + 44 +core 0: 3 0x0000000080001b7c (0x02078663) +core 0: 0x0000000080001b80 (0x0c0077d7) vsetvli a5, zero, e8, m1, ta, ma +core 0: 3 0x0000000080001b80 (0x0c0077d7) x15 0x0000000000000010 +core 0: 0x0000000080001b84 (0x5e05c0d7) vmv.v.x v1, a1 +core 0: 3 0x0000000080001b84 (0x5e05c0d7) e8 m1 l10 v1 0x00000000000000000000000000000000 +core 0: 0x0000000080001b88 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b88 (0x00050793) x15 0x0000000080002500 +core 0: 0x0000000080001b8c (0x04e57663) bgeu a0, a4, pc + 76 +core 0: 3 0x0000000080001b8c (0x04e57663) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002500 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x0000000000000034 +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002510 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002510 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x0000000000000024 +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002520 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002520 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x0000000000000014 +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002530 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002538 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000000a +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x000000008000253a +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002540 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x0000000000000000 +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002544 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001ba4 (0x00008067) ret +core 0: 3 0x0000000080001ba4 (0x00008067) +core 0: 0x0000000080001c54 (0x00048593) mv a1, s1 +core 0: 3 0x0000000080001c54 (0x00048593) x11 0x0000000000000001 +core 0: 0x0000000080001c58 (0x00040513) mv a0, s0 +core 0: 3 0x0000000080001c58 (0x00040513) x10 0x0000000000000000 +core 0: 0x0000000080001c5c (0xd29ff0ef) jal pc - 0x2d8 +core 0: 3 0x0000000080001c5c (0xd29ff0ef) x1 0x0000000080001c60 +core 0: >>>> thread_entry +core 0: 0x0000000080001984 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x0000000080001984 (0x00051463) +core 0: 0x0000000080001988 (0x00008067) ret +core 0: 3 0x0000000080001988 (0x00008067) +core 0: 0x0000000080001c60 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c60 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c64 (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c64 (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c68 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c68 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c6c (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c6c (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c70 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c70 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c74 (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c74 (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c78 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c78 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c7c (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c7c (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c80 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c80 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c84 (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c84 (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c88 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c88 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c8c (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c8c (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c90 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c90 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c94 (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c94 (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001c98 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001c98 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001c9c (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001c9c (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001ca0 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001ca0 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001ca4 (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001ca4 (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001ca8 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001ca8 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001cac (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001cac (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001cb0 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001cb0 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001cb4 (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001cb4 (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001cb8 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001cb8 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001cbc (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001cbc (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001cc0 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001cc0 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cc4 (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cc4 (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001cc8 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001cc8 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001ccc (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001ccc (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cd0 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cd0 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cd4 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cd4 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cd8 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001cd8 (0x16c000ef) x1 0x0000000080001cdc +core 0: >>>> main +core 0: 0x0000000080001e44 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001e44 (0x00000797) x15 0x0000000080001e44 +core 0: 0x0000000080001e48 (0x0e879787) flh fa5, 232(a5) +core 0: 3 0x0000000080001e48 (0x0e879787) f15 0xffffffffffff4280 mem 0x0000000080001f2c +core 0: 0x0000000080001e4c (0xfe010113) addi sp, sp, -32 +core 0: 3 0x0000000080001e4c (0xfe010113) x2 0x00000000800220b0 +core 0: 0x0000000080001e50 (0x00f11327) fsh fa5, 6(sp) +core 0: 3 0x0000000080001e50 (0x00f11327) mem 0x00000000800220b6 0x4280 +core 0: 0x0000000080001e54 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e54 (0xc00027f3) x15 0x000000000000040c +core 0: 0x0000000080001e58 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001e58 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e5c (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001e5c (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001e60 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e60 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001e64 (0x402787d3) fcvt.s.h fa5, fa5 +core 0: 3 0x0000000080001e64 (0x402787d3) f15 0xffffffff40500000 +core 0: 0x0000000080001e68 (0x00f12427) fsw fa5, 8(sp) +core 0: 3 0x0000000080001e68 (0x00f12427) mem 0x00000000800220b8 0x40500000 +core 0: 0x0000000080001e6c (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e6c (0xfe0798e3) +core 0: 0x0000000080001e70 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e70 (0xc00027f3) x15 0x000000000000049f +core 0: 0x0000000080001e74 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001e74 (0x00000797) x15 0x0000000080001e74 +core 0: 0x0000000080001e78 (0x0b47a787) flw fa5, 180(a5) +core 0: 3 0x0000000080001e78 (0x0b47a787) f15 0xffffffff40500000 mem 0x0000000080001f28 +core 0: 0x0000000080001e7c (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001e7c (0x00f12627) mem 0x00000000800220bc 0x40500000 +core 0: 0x0000000080001e80 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e80 (0xc00027f3) x15 0x00000000000004c3 +core 0: 0x0000000080001e84 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001e84 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e88 (0x00c12787) flw fa5, 12(sp) +core 0: 3 0x0000000080001e88 (0x00c12787) f15 0xffffffff40500000 mem 0x00000000800220bc +core 0: 0x0000000080001e8c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001e8c (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001e90 (0x4407f7d3) fcvt.h.s fa5, fa5 +core 0: 3 0x0000000080001e90 (0x4407f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001e94 (0x00f11127) fsh fa5, 2(sp) +core 0: 3 0x0000000080001e94 (0x00f11127) mem 0x00000000800220b2 0x4280 +core 0: 0x0000000080001e98 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001e98 (0xfe0798e3) +core 0: 0x0000000080001e9c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e9c (0xc00027f3) x15 0x0000000000000531 +core 0: 0x0000000080001ea0 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ea0 (0xc00027f3) x15 0x000000000000053a +core 0: 0x0000000080001ea4 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001ea4 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ea8 (0x00611787) flh fa5, 6(sp) +core 0: 3 0x0000000080001ea8 (0x00611787) f15 0xffffffffffff4280 mem 0x00000000800220b6 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001eb0 (0x422787d3) fcvt.d.h fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x422787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x00f13827) fsd fa5, 16(sp) +core 0: 3 0x0000000080001eb4 (0x00f13827) mem 0x00000000800220c0 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001eb8 (0xfe0798e3) +core 0: 0x0000000080001ebc (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ebc (0xc00027f3) x15 0x00000000000005b0 +core 0: 0x0000000080001ec0 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001ec0 (0x00000797) x15 0x0000000080001ec0 +core 0: 0x0000000080001ec4 (0x0607b787) fld fa5, 96(a5) +core 0: 3 0x0000000080001ec4 (0x0607b787) f15 0x400a000000000000 mem 0x0000000080001f20 +core 0: 0x0000000080001ec8 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001ec8 (0x00f13c27) mem 0x00000000800220c8 0x400a000000000000 +core 0: 0x0000000080001ecc (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ecc (0xc00027f3) x15 0x00000000000005ca +core 0: 0x0000000080001ed0 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001ed0 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ed4 (0x01813787) fld fa5, 24(sp) +core 0: 3 0x0000000080001ed4 (0x01813787) f15 0x400a000000000000 mem 0x00000000800220c8 +core 0: 0x0000000080001ed8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ed8 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001edc (0x4417f7d3) fcvt.h.d fa5, fa5 +core 0: 3 0x0000000080001edc (0x4417f7d3) f15 0xffffffffffff4280 +core 0: 0x0000000080001ee0 (0x00f11227) fsh fa5, 4(sp) +core 0: 3 0x0000000080001ee0 (0x00f11227) mem 0x00000000800220b4 0x4280 +core 0: 0x0000000080001ee4 (0xfe0798e3) bnez a5, pc - 16 +core 0: 3 0x0000000080001ee4 (0xfe0798e3) +core 0: 0x0000000080001ee8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ee8 (0xc00027f3) x15 0x000000000000065d +core 0: 0x0000000080001eec (0x00000513) li a0, 0 +core 0: 3 0x0000000080001eec (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x02010113) addi sp, sp, 32 +core 0: 3 0x0000000080001ef0 (0x02010113) x2 0x00000000800220d0 +core 0: 0x0000000080001ef4 (0x00008067) ret +core 0: 3 0x0000000080001ef4 (0x00008067) +core 0: 0x0000000080001cdc (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cdc (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001ce0 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001ce0 (0x000a0493) x9 0x0000000080022100 +core 0: 0x0000000080001ce4 (0xcf018413) addi s0, gp, -784 +core 0: 3 0x0000000080001ce4 (0xcf018413) x8 0x0000000080002410 +core 0: 0x0000000080001ce8 (0xc0018913) addi s2, gp, -1024 +core 0: 3 0x0000000080001ce8 (0xc0018913) x18 0x0000000080002320 +core 0: 0x0000000080001cec (0xde018993) addi s3, gp, -544 +core 0: 3 0x0000000080001cec (0xde018993) x19 0x0000000080002500 +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002320 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002410 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022100 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002410 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022100 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022100 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x000000000000065d +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x000000000000000a +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022100 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022100 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002320 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022100 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022100 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022100 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022101 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022101 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022101 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022101 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022101 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022102 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022102 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022102 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022102 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022102 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022103 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022103 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022103 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022103 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022103 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022104 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022104 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022104 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022104 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022104 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022105 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022105 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022105 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022105 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022105 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022106 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022106 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022106 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022106 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022106 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022107 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022107 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022107 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022107 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022107 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022108 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022108 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022108 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022108 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022108 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022109 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022109 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022109 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022109 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022109 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002210a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002210a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002210a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002210a 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002210a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002210b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002210b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022100 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022100 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002320 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002210b mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002210b 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002210b mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002410 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002418 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002328 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002210b +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002328 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002418 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002210b +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002418 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x000000008002210b +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002210b +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x000000008002210b +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008002210b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x000000008002210b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002328 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002210b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002210b 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002210b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002210c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002210c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002210c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002210c 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002210c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002210d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002210d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002210d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002210d 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002210d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002210e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002210e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002210e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002210e 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002210e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002210f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002210f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002210f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002210f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002210f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022110 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022110 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022110 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022110 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022110 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022111 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022111 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022111 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022111 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022111 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022112 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022112 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022112 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022112 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022112 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022113 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022113 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022113 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022113 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022113 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022114 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022114 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022114 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022114 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022114 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022115 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022115 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022115 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022115 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022115 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022116 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022116 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002210b mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002210b mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002328 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022116 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022116 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022116 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002418 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002420 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002330 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022116 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002330 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002420 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022116 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002420 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022116 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022116 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022116 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022116 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022116 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002330 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022116 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022116 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022116 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022117 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022117 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022117 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022117 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022117 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022118 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022118 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022118 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022118 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022118 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022119 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022119 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022119 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022119 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022119 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002211a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002211a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002211a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002211a 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002211a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002211b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002211b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002211b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002211b 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002211b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002211c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002211c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002211c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002211c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002211c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002211d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002211d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002211d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002211d 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002211d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002211e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002211e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002211e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002211e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002211e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002211f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002211f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002211f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002211f 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002211f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022120 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022120 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022120 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022120 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022120 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022121 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022121 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022116 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022116 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002330 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022121 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022121 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022121 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002420 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002428 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002338 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022121 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002338 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002428 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022121 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002428 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022121 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022121 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022121 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022121 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022121 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002338 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022121 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022121 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022121 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022122 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022122 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022122 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022122 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022122 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022123 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022123 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022123 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022123 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022123 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022124 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022124 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022124 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022124 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022124 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022125 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022125 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022125 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022125 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022125 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022126 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022126 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022126 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022126 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022126 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022127 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022127 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022127 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022127 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022127 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022128 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022128 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022128 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022128 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022128 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022129 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022129 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022129 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022129 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022129 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002212a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002212a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002212a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002212a 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002212a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002212b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002212b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002212b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002212b 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002212b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002212c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002212c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022121 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022121 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002338 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002212c mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002212c 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002212c mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002428 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002430 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002340 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002212c +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002340 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002430 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002212c +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002430 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x000000008002212c +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002212c +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x000000008002212c +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008002212c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x000000008002212c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002340 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002212c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002212c 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002212c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002212d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002212d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002212d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002212d 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002212d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002212e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002212e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002212e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002212e 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002212e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002212f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002212f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002212f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002212f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002212f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022130 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022130 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022130 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022130 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022130 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022131 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022131 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022131 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022131 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022131 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022132 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022132 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022132 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022132 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022132 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022133 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022133 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022133 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022133 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022133 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022134 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022134 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022134 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022134 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022134 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022135 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022135 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022135 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022135 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022135 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022136 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022136 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022136 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022136 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022136 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022137 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022137 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002212c mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002212c mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002340 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022137 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022137 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022137 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002430 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002438 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002348 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022137 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002348 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002438 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022137 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002438 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022137 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022137 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022137 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022137 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022137 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002348 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022137 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022137 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022137 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022138 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022138 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022138 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022138 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022138 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022139 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022139 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022139 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022139 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022139 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002213a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002213a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002213a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002213a 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002213a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002213b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002213b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002213b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002213b 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002213b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002213c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002213c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002213c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002213c 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002213c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002213d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002213d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002213d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002213d 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002213d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002213e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002213e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002213e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002213e 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002213e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002213f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002213f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002213f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002213f 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002213f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022140 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022140 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022140 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022140 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022140 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022141 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022141 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022141 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022141 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022141 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022142 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022142 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022137 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022137 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002348 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022142 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022142 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022142 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002438 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002440 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002350 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022142 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002350 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002440 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022142 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002440 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022142 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022142 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022142 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022142 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022142 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002350 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022142 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022142 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022142 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022143 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022143 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022143 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022143 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022143 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022144 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022144 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022144 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022144 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022144 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022145 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022145 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022145 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022145 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022145 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022146 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022146 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022146 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022146 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022146 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022147 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022147 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022147 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022147 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022147 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022148 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022148 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022148 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022148 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022148 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022149 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022149 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022149 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022149 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022149 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002214a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002214a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002214a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002214a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002214a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002214b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002214b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002214b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002214b 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002214b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002214c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002214c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002214c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002214c 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002214c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002214d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002214d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022142 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022142 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002350 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002214d mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002214d 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002214d mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002440 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002448 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002358 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002214d +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002358 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002448 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002214d +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002448 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x000000008002214d +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002214d +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x000000008002214d +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008002214d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x000000008002214d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002358 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002214d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002214d 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002214d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002214e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002214e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002214e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002214e 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002214e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002214f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002214f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002214f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002214f 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002214f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022150 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022150 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022150 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022150 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022150 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022151 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022151 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022151 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022151 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022151 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022152 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022152 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022152 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022152 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022152 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022153 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022153 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022153 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022153 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022153 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022154 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022154 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022154 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022154 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022154 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022155 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022155 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022155 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022155 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022155 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022156 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022156 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022156 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022156 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022156 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022157 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022157 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022157 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022157 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022157 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022158 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022158 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002214d mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002214d mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002358 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022158 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022158 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022158 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002448 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002450 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002360 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022158 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002360 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002450 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022158 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002450 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022158 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022158 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022158 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022158 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022158 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002360 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022158 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022158 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022158 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022159 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022159 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022159 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022159 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022159 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002215a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002215a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002215a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002215a 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002215a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002215b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002215b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002215b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002215b 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002215b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002215c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002215c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002215c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002215c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002215c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002215d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002215d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002215d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002215d 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002215d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002215e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002215e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002215e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002215e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002215e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002215f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002215f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002215f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002215f 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002215f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022160 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022160 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022160 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022160 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022160 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022161 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022161 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022161 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022161 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022161 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022162 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022162 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022162 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022162 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022162 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022163 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022163 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022158 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022158 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002360 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022163 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022163 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022163 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002450 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002458 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002368 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022163 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002368 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002458 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022163 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002458 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022163 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022163 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022163 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022163 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022163 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002368 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022163 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022163 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022163 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022164 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022164 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022164 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022164 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022164 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022165 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022165 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022165 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022165 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022165 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022166 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022166 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022166 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022166 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022166 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022167 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022167 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022167 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022167 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022167 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022168 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022168 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022168 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022168 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022168 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022169 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022169 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022169 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022169 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022169 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002216a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002216a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002216a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002216a 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002216a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002216b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002216b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002216b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002216b 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002216b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002216c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002216c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002216c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002216c 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002216c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002216d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002216d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002216d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002216d 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002216d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002216e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002216e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022163 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022163 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002368 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002216e mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002216e 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002216e mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002458 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002460 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002370 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002216e +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002370 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002460 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002216e +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002460 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x000000008002216e +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002216e +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x000000008002216e +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008002216e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x000000008002216e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002370 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002216e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002216e 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002216e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002216f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002216f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002216f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002216f 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002216f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022170 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022170 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022170 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022170 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022170 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022171 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022171 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022171 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022171 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022171 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022172 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022172 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022172 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022172 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022172 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022173 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022173 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022173 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022173 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022173 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022174 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022174 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022174 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022174 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022174 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022175 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022175 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022175 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022175 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022175 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022176 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022176 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022176 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022176 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022176 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022177 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022177 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022177 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022177 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022177 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022178 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022178 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022178 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022178 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022178 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022179 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022179 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002216e mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002216e mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002370 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022179 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022179 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022179 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002460 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002468 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002378 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022179 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002378 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002468 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022179 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002468 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022179 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022179 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022179 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022179 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022179 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002378 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022179 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022179 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022179 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002217a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002217a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002217a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002217a 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002217a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002217b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002217b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002217b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002217b 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002217b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002217c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002217c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002217c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002217c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002217c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002217d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002217d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002217d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002217d 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002217d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002217e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002217e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002217e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002217e 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002217e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002217f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002217f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002217f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002217f 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002217f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022180 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022180 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022180 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022180 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022180 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022181 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022181 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022181 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022181 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022181 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022182 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022182 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022182 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022182 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022182 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022183 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022183 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022183 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022183 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022183 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022184 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022184 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022179 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022179 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002378 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022184 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022184 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022184 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002468 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002470 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002380 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022184 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002380 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002470 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022184 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002470 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022184 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022184 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022184 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022184 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022184 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002380 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022184 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022184 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022184 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022185 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022185 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022185 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022185 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022185 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022186 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022186 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022186 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022186 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022186 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022187 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022187 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022187 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022187 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022187 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022188 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022188 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022188 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022188 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022188 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022189 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022189 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022189 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022189 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022189 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002218a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002218a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002218a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002218a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002218a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002218b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002218b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002218b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002218b 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002218b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002218c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002218c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002218c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002218c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002218c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002218d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002218d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002218d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002218d 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002218d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002218e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002218e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002218e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002218e 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002218e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002218f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002218f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022184 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022184 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002380 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002218f mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002218f 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002218f mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002470 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002478 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002388 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002218f +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002388 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002478 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002218f +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002478 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x000000008002218f +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002218f +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x000000008002218f +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008002218f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x000000008002218f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002388 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002218f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002218f 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002218f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022190 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022190 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022190 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022190 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022190 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022191 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022191 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022191 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022191 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022191 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022192 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022192 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022192 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022192 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022192 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022193 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022193 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022193 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022193 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022193 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022194 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022194 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022194 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022194 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022194 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022195 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022195 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022195 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022195 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022195 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022196 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022196 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022196 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022196 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022196 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022197 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022197 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022197 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022197 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022197 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022198 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022198 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022198 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022198 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022198 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022199 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022199 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022199 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022199 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022199 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002219a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002219a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002218f mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002218f mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002388 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002219a mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002219a 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002219a mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002478 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002480 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002390 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002219a +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002390 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002480 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002219a +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002480 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x000000008002219a +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002219a +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x000000008002219a +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008002219a +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x000000008002219a +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002390 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002219a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002219a 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002219a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002219b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002219b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002219b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002219b 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002219b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002219c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002219c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002219c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002219c 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002219c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002219d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002219d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002219d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002219d 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002219d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002219e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002219e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002219e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002219e 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002219e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002219f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002219f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002219f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002219f 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002219f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a0 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a0 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a0 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a1 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a1 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a1 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a2 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a2 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a2 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a3 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a3 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a3 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a4 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a4 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a4 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002219a mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002219a mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002390 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800221a5 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800221a5 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800221a5 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002480 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002488 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002398 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800221a5 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002398 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002488 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800221a5 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002488 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x00000000800221a5 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800221a5 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x00000000800221a5 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x00000000800221a5 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x00000000800221a5 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002398 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a5 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a5 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a5 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a6 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a6 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a6 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a7 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a7 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a7 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a8 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a8 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a8 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221a9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221a9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221a9 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221a9 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221a9 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221aa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221aa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221aa mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221aa 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221aa mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ab +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ab +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ab mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ab 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ab mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ac +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ac +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ac mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ac 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ac mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ad +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ad +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ad mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ad 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ad mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ae +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ae +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ae mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ae 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ae mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221af +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221af +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221af mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221af 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221af mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800221a5 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800221a5 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002398 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800221b0 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800221b0 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800221b0 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002488 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002490 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023a0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800221b0 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023a0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002490 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800221b0 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002490 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x00000000800221b0 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800221b0 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x00000000800221b0 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x00000000800221b0 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x00000000800221b0 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023a0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b0 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b0 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b0 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b1 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b1 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b1 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b2 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b2 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b2 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b3 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b3 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b3 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b4 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b4 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b4 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b5 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b5 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b5 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b6 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b6 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b6 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b7 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b7 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b7 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b8 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b8 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b8 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221b9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221b9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221b9 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221b9 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221b9 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ba +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ba +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ba mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ba 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ba mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221bb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221bb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800221b0 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800221b0 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023a0 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800221bb mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800221bb 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800221bb mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002490 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002498 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023a8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800221bb +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023a8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002498 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800221bb +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x0000000080002498 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x00000000800221bb +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800221bb +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x00000000800221bb +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x00000000800221bb +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x00000000800221bb +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023a8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221bb mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221bb 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221bb mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221bc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221bc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221bc mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221bc 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221bc mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221bd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221bd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221bd mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221bd 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221bd mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221be +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221be +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221be mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221be 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221be mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221bf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221bf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221bf mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221bf 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221bf mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c0 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c0 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c0 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c1 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c1 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c1 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c2 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c2 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c2 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c3 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c3 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c3 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c4 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c4 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c4 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c5 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c5 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c5 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800221bb mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800221bb mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023a8 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800221c6 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800221c6 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800221c6 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002498 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024a0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023b0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800221c6 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023b0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024a0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800221c6 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024a0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x00000000800221c6 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800221c6 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x00000000800221c6 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x00000000800221c6 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x00000000800221c6 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023b0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c6 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c6 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c6 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c7 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c7 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c7 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c8 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c8 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c8 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221c9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221c9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221c9 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221c9 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221c9 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ca +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ca +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ca mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ca 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ca mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221cb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221cb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221cb mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221cb 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221cb mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221cc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221cc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221cc mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221cc 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221cc mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221cd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221cd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221cd mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221cd 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221cd mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ce +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ce +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ce mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ce 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ce mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221cf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221cf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221cf mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221cf 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221cf mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d0 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d0 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d0 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800221c6 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800221c6 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023b0 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800221d1 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800221d1 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800221d1 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024a0 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024a8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023b8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800221d1 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023b8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024a8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800221d1 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024a8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x00000000800221d1 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800221d1 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x00000000800221d1 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x00000000800221d1 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x00000000800221d1 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023b8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d1 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d1 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d1 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d2 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d2 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d2 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d3 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d3 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d3 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d4 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d4 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d4 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d5 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d5 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d5 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d6 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d6 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d6 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d7 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d7 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d7 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d8 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d8 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d8 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221d9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221d9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221d9 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221d9 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221d9 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221da +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221da +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221da mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221da 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221da mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221db +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221db +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221db mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221db 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221db mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221dc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221dc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800221d1 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800221d1 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023b8 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800221dc mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800221dc 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800221dc mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024a8 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024b0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023c0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800221dc +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023c0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024b0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800221dc +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024b0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x00000000800221dc +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800221dc +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x00000000800221dc +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x00000000800221dc +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x00000000800221dc +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023c0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221dc mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221dc 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221dc mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221dd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221dd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221dd mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221dd 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221dd mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221de +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221de +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221de mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221de 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221de mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221df +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221df +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221df mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221df 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221df mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e0 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e0 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e0 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e1 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e1 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e1 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e2 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e2 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e2 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e3 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e3 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e3 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e4 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e4 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e4 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e5 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e5 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e5 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e6 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e6 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e6 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800221dc mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800221dc mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023c0 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800221e7 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800221e7 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800221e7 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024b0 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024b8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023c8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800221e7 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023c8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024b8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800221e7 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024b8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x00000000800221e7 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800221e7 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x00000000800221e7 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x00000000800221e7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x00000000800221e7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023c8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e7 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e7 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e7 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e8 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e8 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e8 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221e9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221e9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221e9 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221e9 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221e9 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ea +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ea +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ea mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ea 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ea mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221eb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221eb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221eb mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221eb 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221eb mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ec +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ec +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ec mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ec 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ec mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ed +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ed +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ed mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ed 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ed mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ee +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ee +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ee mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ee 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ee mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ef +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ef +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ef mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ef 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ef mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f0 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f0 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f0 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f1 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f1 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f1 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800221e7 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800221e7 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023c8 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800221f2 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800221f2 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800221f2 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024b8 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024c0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023d0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800221f2 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023d0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024c0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800221f2 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024c0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x00000000800221f2 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800221f2 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x00000000800221f2 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x00000000800221f2 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x00000000800221f2 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023d0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f2 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f2 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f2 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f3 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f3 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f3 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f4 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f4 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f4 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f5 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f5 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f5 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f6 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f6 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f6 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f7 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f7 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f7 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f8 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f8 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f8 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221f9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221f9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221f9 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221f9 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221f9 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221fa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221fa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221fa mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221fa 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221fa mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221fb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221fb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221fb mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221fb 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221fb mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221fc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221fc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221fc mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221fc 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221fc mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221fd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221fd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800221f2 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800221f2 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023d0 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800221fd mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800221fd 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800221fd mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024c0 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024c8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023d8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800221fd +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023d8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024c8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800221fd +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024c8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x00000000800221fd +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800221fd +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x00000000800221fd +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x00000000800221fd +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x00000000800221fd +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023d8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221fd mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221fd 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221fd mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221fe +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221fe +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221fe mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221fe 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221fe mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800221ff +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x00000000800221ff +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800221ff mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800221ff 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800221ff mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022200 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022200 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022200 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022200 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022200 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022201 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022201 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022201 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022201 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022201 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022202 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022202 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022202 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022202 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022202 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022203 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022203 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022203 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022203 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022203 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022204 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022204 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022204 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022204 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022204 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022205 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022205 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022205 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022205 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022205 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022206 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022206 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022206 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022206 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022206 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022207 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022207 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022207 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022207 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022207 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022208 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022208 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800221fd mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800221fd mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023d8 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022208 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022208 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022208 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024c8 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024d0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023e0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022208 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023e0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024d0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022208 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024d0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022208 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022208 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022208 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022208 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022208 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023e0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022208 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022208 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022208 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022209 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022209 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022209 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022209 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022209 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002220a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002220a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002220a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002220a 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002220a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002220b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002220b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002220b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002220b 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002220b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002220c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002220c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002220c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002220c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002220c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002220d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002220d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002220d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002220d 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002220d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002220e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002220e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002220e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002220e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002220e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002220f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002220f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002220f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002220f 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002220f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022210 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022210 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022210 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022210 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022210 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022211 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022211 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022211 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022211 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022211 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022212 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022212 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022212 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022212 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022212 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022213 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022213 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022208 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022208 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023e0 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022213 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022213 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022213 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024d0 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024d8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023e8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022213 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023e8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024d8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022213 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024d8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022213 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022213 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022213 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022213 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022213 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023e8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022213 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022213 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022213 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022214 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022214 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022214 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022214 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022214 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022215 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022215 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022215 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022215 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022215 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022216 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022216 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022216 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022216 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022216 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022217 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022217 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022217 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022217 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022217 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022218 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022218 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022218 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022218 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022218 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022219 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022219 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022219 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022219 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022219 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002221a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002221a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002221a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002221a 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002221a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002221b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002221b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002221b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002221b 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002221b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002221c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002221c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002221c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002221c 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002221c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002221d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002221d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002221d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002221d 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002221d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002221e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002221e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022213 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022213 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023e8 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002221e mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002221e 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002221e mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024d8 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024e0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023f0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002221e +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023f0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024e0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002221e +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024e0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x000000008002221e +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002221e +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x000000008002221e +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008002221e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x000000008002221e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023f0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002221e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002221e 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002221e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002221f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002221f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002221f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002221f 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002221f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022220 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022220 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022220 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022220 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022220 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022221 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022221 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022221 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022221 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022221 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022222 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022222 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022222 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022222 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022222 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022223 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022223 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022223 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022223 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022223 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022224 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022224 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022224 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022224 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022224 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022225 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022225 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022225 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022225 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022225 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022226 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022226 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022226 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022226 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022226 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022227 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022227 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022227 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022227 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022227 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022228 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022228 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022228 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022228 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022228 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022229 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022229 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002221e mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002221e mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023f0 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022229 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022229 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022229 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024e0 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024e8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800023f8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022229 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800023f8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024e8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022229 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024e8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022229 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022229 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022229 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022229 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022229 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x00000000800023f8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022229 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022229 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022229 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002222a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002222a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002222a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002222a 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002222a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002222b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002222b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002222b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002222b 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002222b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002222c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002222c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002222c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002222c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002222c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002222d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002222d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002222d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002222d 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002222d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002222e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002222e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002222e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002222e 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002222e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002222f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002222f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002222f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002222f 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002222f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022230 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022230 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022230 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022230 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022230 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022231 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022231 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022231 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022231 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022231 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022232 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022232 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022232 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022232 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022232 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022233 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022233 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022233 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022233 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022233 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022234 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022234 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022229 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022229 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800023f8 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022234 mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022234 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022234 mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024e8 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024f0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002400 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022234 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002400 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024f0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022234 +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024f0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x0000000080022234 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022234 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x0000000080022234 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x0000000080022234 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x0000000080022234 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002400 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022234 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022234 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022234 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022235 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022235 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022235 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022235 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022235 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022236 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022236 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022236 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022236 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022236 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022237 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022237 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022237 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022237 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022237 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022238 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022238 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022238 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022238 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022238 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022239 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022239 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022239 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022239 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022239 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002223a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002223a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002223a mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002223a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002223a mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002223b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002223b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002223b mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002223b 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002223b mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002223c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002223c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002223c mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002223c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002223c mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002223d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002223d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002223d mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002223d 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002223d mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002223e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002223e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002223e mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002223e 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002223e mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002223f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002223f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022234 mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022234 mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002400 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002223f mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002223f 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002223f mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024f0 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x00000000800024f8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002408 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002223f +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002408 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x00000000800024f8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002223f +core 0: 0x0000000080001cfc (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080001cfc (0x00000597) x11 0x0000000080001cfc +core 0: 0x0000000080001d00 (0x4bc58593) addi a1, a1, 1212 +core 0: 3 0x0000000080001d00 (0x4bc58593) x11 0x00000000800021b8 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022070 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x00000000800220a0 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022090 0x00000000800024f8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022078 0x000000008002223f +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x00000000800220a0 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x00000000800220a8 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002223f +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x00000000800021b8 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022078 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x00000000800220a0 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022098 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x00000000800220b8 0x000000008002223f +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x00000000800220b0 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x00000000800220c0 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x00000000800220c8 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022088 0x00000000800220a0 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080021f10 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022060 0x000000008002223f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022058 0x000000008002223f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022050 0x0000000080002408 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022040 0x0000000080022100 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022038 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022030 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022028 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022068 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022048 0x0000000080002500 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022020 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022018 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022010 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x00000000800021b8 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x00000000800220a0 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022078 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x00000000800021c4 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021b8 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x00000000800021b9 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021b9 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021b9 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021ba +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002304 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff0d8 mem 0x0000000080002304 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x00000000800220a0 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x00000000800220a8 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0xbc0c0c13) addi s8, s8, -1088 +core 0: 3 0x0000000080001374 (0xbc0c0c13) x24 0x0000000080001f30 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002223f mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002223f 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002223f mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022240 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022240 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080001f31 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f31 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022240 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022240 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022240 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022241 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022241 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080001f32 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f32 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022241 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022241 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022241 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022242 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022242 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f33 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f33 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022242 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022242 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022242 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022243 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022243 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080001f34 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f34 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022243 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022243 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022243 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022244 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022244 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080001f35 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f35 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022078 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022244 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022244 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022244 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022245 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022245 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080001f36 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080001f36 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021ba +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bb +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022245 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022245 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022245 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022246 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022246 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x00000000800021bb +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bc +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022246 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022246 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022246 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022247 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022247 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x00000000800021bc +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021bd +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022247 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022247 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022247 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022248 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022248 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x00000000800021bd +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x00000000800021be +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x00000000800021be +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x00000000800021be +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x00000000800021bf +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000230c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xfffffffffffff180 mem 0x000000008000230c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x00000000800220b0 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x00000000800220a8 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x00000000800220b0 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x0000000080021f14 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x0000000080021f10 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x0000000080021f10 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x0000000080021f0c +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x0000000080021f10 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022078 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x0000000080021f0c +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022248 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022248 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022248 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022249 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x0000000080022249 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x00000000800021bf +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022078 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800021c0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022249 mem 0x0000000080022078 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022249 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022249 mem 0x0000000080022078 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002224a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022078 0x000000008002224a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022068 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002223f mem 0x0000000080022060 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002223f mem 0x0000000080022058 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002408 mem 0x0000000080022050 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002500 mem 0x0000000080022048 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x0000000080022100 mem 0x0000000080022040 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022038 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022030 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022028 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022020 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022018 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022010 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022070 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002224a mem 0x0000000080022078 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002224a 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002224a mem 0x0000000080022078 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022098 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x00000000800024f8 mem 0x0000000080022090 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x00000000800220d0 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002500 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002410 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002224a +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001d18 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d18 (0x009a0663) +core 0: 0x0000000080001d1c (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d1c (0x000a0513) x10 0x0000000080022100 +core 0: 0x0000000080001d20 (0xbf1ff0ef) jal pc - 0x410 +core 0: 3 0x0000000080001d20 (0xbf1ff0ef) x1 0x0000000080001d24 +core 0: >>>> printstr +core 0: 0x0000000080001910 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x0000000080001910 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022100 +core 0: 0x0000000080001914 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001914 (0xf9010113) x2 0x0000000080022060 +core 0: 0x0000000080001918 (0x03f10693) addi a3, sp, 63 +core 0: 3 0x0000000080001918 (0x03f10693) x13 0x000000008002209f +core 0: 0x000000008000191c (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x000000008000191c (0xfc06f693) x13 0x0000000080022080 +core 0: 0x0000000080001920 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001920 (0x00078c63) +core 0: 0x0000000080001924 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001924 (0x00050793) x15 0x0000000080022100 +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022101 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022101 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022102 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022102 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022103 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022103 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022104 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022104 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022105 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022105 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022106 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022106 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022107 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022107 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022108 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022108 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022109 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022109 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002210a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002210a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002210b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002210b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002210c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002210c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002210d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002210d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002210e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002210e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002210f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002210f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022110 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022110 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022111 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022111 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022112 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022112 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022113 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022113 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022114 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022114 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022115 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022115 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022116 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022116 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022117 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022117 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022118 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022118 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022119 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022119 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002211a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002211a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002211b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002211b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002211c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002211c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002211d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002211d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002211e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002211e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002211f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002211f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022120 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022120 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022121 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022121 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022122 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022122 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022123 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022123 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022124 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022124 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022125 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022125 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022126 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022126 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022127 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022127 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022128 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022128 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022129 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022129 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002212a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002212a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002212b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002212b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002212c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002212c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002212d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002212d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002212e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002212e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002212f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002212f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022130 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022130 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022131 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022131 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022132 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022132 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022133 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022133 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022134 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022134 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022135 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022135 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022136 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022136 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022137 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022137 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022138 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022138 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022139 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022139 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002213a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002213a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002213b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002213b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002213c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002213c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002213d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002213d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002213e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002213e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002213f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002213f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022140 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022140 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022141 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022141 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022142 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022142 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022143 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022143 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022144 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022144 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022145 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022145 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022146 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022146 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022147 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022147 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022148 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022148 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022149 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022149 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002214a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002214a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002214b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002214b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002214c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002214c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002214d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002214d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002214e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002214e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002214f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002214f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022150 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022150 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022151 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022151 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022152 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022152 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022153 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022153 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022154 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022154 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022155 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022155 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022156 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022156 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022157 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022157 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022158 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022158 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022159 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022159 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002215a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002215a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002215b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002215b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002215c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002215c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002215d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002215d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002215e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002215e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002215f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002215f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022160 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022160 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022161 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022161 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022162 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022162 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022163 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022163 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022164 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022164 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022165 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022165 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022166 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022166 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022167 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022167 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022168 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022168 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022169 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022169 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002216a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002216a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002216b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002216b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002216c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002216c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002216d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002216d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002216e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002216e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002216f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002216f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022170 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022170 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022171 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022171 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022172 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022172 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022173 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022173 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022174 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022174 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022175 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022175 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022176 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022176 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022177 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022177 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022178 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022178 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022179 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022179 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002217a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002217a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002217b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002217b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002217c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002217c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002217d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002217d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002217e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002217e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002217f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002217f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022180 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022180 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022181 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022181 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022182 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022182 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022183 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022183 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022184 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022184 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022185 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022185 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022186 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022186 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022187 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022187 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022188 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022188 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022189 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022189 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002218a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002218a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002218b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002218b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002218c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002218c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002218d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002218d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002218e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002218e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002218f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002218f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022190 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022190 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022191 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022191 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022192 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022192 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022193 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022193 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022194 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022194 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022195 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022195 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022196 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022196 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022197 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022197 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022198 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022198 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022199 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022199 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002219a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002219a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002219b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002219b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002219c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002219c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002219d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002219d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002219e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002219e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002219f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002219f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221a0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221a1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221a2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221a3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221a4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221a5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221a6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221a7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221a8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221a9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221a9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221aa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221aa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221ab +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ab +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221ac +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ac +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221ad +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ad +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221ae +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ae +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221af +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221af +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221b0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221b1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221b2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221b3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221b4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221b5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221b6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221b7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221b8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221b9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221b9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221ba +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ba +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221bb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221bb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221bc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221bc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221bd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221bd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221be +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221be +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221bf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221bf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221c0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221c1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221c2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221c3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221c4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221c5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221c6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221c7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221c8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221c9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221c9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221ca +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ca +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221cb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221cb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221cc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221cc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221cd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221cd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221ce +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ce +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221cf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221cf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221d0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221d1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221d2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221d3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221d4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221d5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221d6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221d7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221d8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221d9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221d9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221da +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221da +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221db +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221db +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221dc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221dc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221dd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221dd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221de +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221de +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221df +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221df +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221e0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221e1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221e2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221e3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221e4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221e5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221e6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221e7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221e8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221e9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221e9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221ea +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ea +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221eb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221eb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221ec +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ec +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221ed +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ed +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221ee +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ee +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221ef +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ef +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221f0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221f1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221f2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221f3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221f4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221f5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800221f6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800221f7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221f8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800221f9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221f9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800221fa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221fa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800221fb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221fb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800221fc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221fc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800221fd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221fd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800221fe +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221fe +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800221ff +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800221ff +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022200 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022200 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022201 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022201 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022202 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022202 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022203 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022203 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022204 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022204 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022205 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022205 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022206 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022206 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022207 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022207 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022208 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022208 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022209 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022209 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002220a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002220a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002220b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002220b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002220c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002220c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002220d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002220d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002220e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002220e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002220f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002220f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022210 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022210 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022211 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022211 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022212 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022212 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022213 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022213 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022214 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022214 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022215 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022215 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022216 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022216 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022217 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022217 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022218 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022218 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022219 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022219 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002221a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002221a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002221b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002221b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002221c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002221c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002221d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002221d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002221e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002221e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002221f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002221f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022220 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022220 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022221 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022221 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022222 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022222 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022223 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022223 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022224 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022224 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022225 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022225 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022226 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022226 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022227 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022227 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022228 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022228 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022229 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022229 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002222a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002222a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002222b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002222b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002222c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002222c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002222d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002222d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002222e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002222e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002222f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002222f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022230 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022230 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022231 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022231 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022232 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022232 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022233 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022233 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022234 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022234 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022235 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022235 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022236 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022236 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022237 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022237 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022238 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022238 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022239 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022239 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002223a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002223a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002223b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002223b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002223c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002223c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002223d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002223d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002223e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002223e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002223f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002223f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022240 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022240 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022241 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022241 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022242 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022242 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022243 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022243 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022244 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022244 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022245 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022245 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022246 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022246 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022247 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022247 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022248 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022248 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022249 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022249 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000000 mem 0x000000008002224a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002224a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001934 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x0000000080001934 (0x40a787b3) x15 0x000000000000014a +core 0: 0x0000000080001938 (0x04000713) li a4, 64 +core 0: 3 0x0000000080001938 (0x04000713) x14 0x0000000000000040 +core 0: 0x000000008000193c (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x000000008000193c (0x00e6b023) mem 0x0000000080022080 0x0000000000000040 +core 0: 0x0000000080001940 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001940 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001944 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x0000000080001944 (0x00e6b423) mem 0x0000000080022088 0x0000000000000001 +core 0: 0x0000000080001948 (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x0000000080001948 (0x00a6b823) mem 0x0000000080022090 0x0000000080022100 +core 0: 0x000000008000194c (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x000000008000194c (0x00f6bc23) mem 0x0000000080022098 0x000000000000014a +core 0: 0x0000000080001950 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001950 (0x0330000f) +core 0: 0x0000000080001954 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001954 (0xbfffe717) x14 0x000000003ffff954 +core 0: 0x0000000080001958 (0x6ec70713) addi a4, a4, 1772 +core 0: 3 0x0000000080001958 (0x6ec70713) x14 0x0000000040000040 +core 0: 0x000000008000195c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000195c (0xbfffe797) x15 0x000000003ffff95c +core 0: 0x0000000080001960 (0x6ad7b223) sd a3, 1700(a5) +core 0: 3 0x0000000080001960 (0x6ad7b223) mem 0x0000000040000000 0x0000000080022080 +core 0: 0x0000000080001964 (0x00073783) ld a5, 0(a4) +core 0: 3 0x0000000080001964 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x0000000080001968 (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x0000000080001968 (0xfe078ee3) +core 0: 0x000000008000196c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000196c (0xbfffe797) x15 0x000000003ffff96c +core 0: 0x0000000080001970 (0x6c07ba23) sd zero, 1748(a5) +core 0: 3 0x0000000080001970 (0x6c07ba23) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x0000000080001974 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001974 (0x0330000f) +core 0: 0x0000000080001978 (0x0006b783) ld a5, 0(a3) +core 0: 3 0x0000000080001978 (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022080 +core 0: 0x000000008000197c (0x07010113) addi sp, sp, 112 +core 0: 3 0x000000008000197c (0x07010113) x2 0x00000000800220d0 +core 0: 0x0000000080001980 (0x00008067) ret +core 0: 3 0x0000000080001980 (0x00008067) +core 0: 0x0000000080001d24 (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d24 (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d28 (0xba5ff0ef) jal pc - 0x45c +core 0: 3 0x0000000080001d28 (0xba5ff0ef) x1 0x0000000080001d2c +core 0: >>>> tohost_exit +core 0: 0x00000000800018cc (0x00151793) slli a5, a0, 1 +core 0: 3 0x00000000800018cc (0x00151793) x15 0x0000000000000000 +core 0: 0x00000000800018d0 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x00000000800018d0 (0x0017e793) x15 0x0000000000000001 +core 0: 0x00000000800018d4 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x00000000800018d4 (0xbfffe717) x14 0x000000003ffff8d4 +core 0: 0x00000000800018d8 (0x72f73623) sd a5, 1836(a4) +core 0: 3 0x00000000800018d8 (0x72f73623) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x00000000800018dc (0x0000006f) j pc + 0x0 +core 0: 3 0x00000000800018dc (0x0000006f) diff --git a/traces/without_czero.txt b/traces/without_czero.txt new file mode 100644 index 0000000..aa5a93e --- /dev/null +++ b/traces/without_czero.txt @@ -0,0 +1,41965 @@ +core 0: 0x0000000000000100 (0x0010041b) addiw s0, zero, 1 +core 0: 3 0x0000000000000100 (0x0010041b) x8 0x0000000000000001 +core 0: 0x0000000000000104 (0x01f41413) slli s0, s0, 31 +core 0: 3 0x0000000000000104 (0x01f41413) x8 0x0000000080000000 +core 0: 0x0000000000000108 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000000000108 (0xf1402573) x10 0x0000000000000000 +core 0: 0x000000000000010c (0x18000593) li a1, 384 +core 0: 3 0x000000000000010c (0x18000593) x11 0x0000000000000180 +core 0: 0x0000000000000110 (0x00040067) jr s0 +core 0: 3 0x0000000000000110 (0x00040067) +core 0: >>>> _start +core 0: 0x0000000080000000 (0x00000093) li ra, 0 +core 0: 3 0x0000000080000000 (0x00000093) x1 0x0000000000000000 +core 0: 0x0000000080000004 (0x00000113) li sp, 0 +core 0: 3 0x0000000080000004 (0x00000113) x2 0x0000000000000000 +core 0: 0x0000000080000008 (0x00000193) li gp, 0 +core 0: 3 0x0000000080000008 (0x00000193) x3 0x0000000000000000 +core 0: 0x000000008000000c (0x00000213) li tp, 0 +core 0: 3 0x000000008000000c (0x00000213) x4 0x0000000000000000 +core 0: 0x0000000080000010 (0x00000293) li t0, 0 +core 0: 3 0x0000000080000010 (0x00000293) x5 0x0000000000000000 +core 0: 0x0000000080000014 (0x00000313) li t1, 0 +core 0: 3 0x0000000080000014 (0x00000313) x6 0x0000000000000000 +core 0: 0x0000000080000018 (0x00000393) li t2, 0 +core 0: 3 0x0000000080000018 (0x00000393) x7 0x0000000000000000 +core 0: 0x000000008000001c (0x00000413) li s0, 0 +core 0: 3 0x000000008000001c (0x00000413) x8 0x0000000000000000 +core 0: 0x0000000080000020 (0x00000493) li s1, 0 +core 0: 3 0x0000000080000020 (0x00000493) x9 0x0000000000000000 +core 0: 0x0000000080000024 (0x00000513) li a0, 0 +core 0: 3 0x0000000080000024 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080000028 (0x00000593) li a1, 0 +core 0: 3 0x0000000080000028 (0x00000593) x11 0x0000000000000000 +core 0: 0x000000008000002c (0x00000613) li a2, 0 +core 0: 3 0x000000008000002c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080000030 (0x00000693) li a3, 0 +core 0: 3 0x0000000080000030 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080000034 (0x00000713) li a4, 0 +core 0: 3 0x0000000080000034 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080000038 (0x00000793) li a5, 0 +core 0: 3 0x0000000080000038 (0x00000793) x15 0x0000000000000000 +core 0: 0x000000008000003c (0x00000813) li a6, 0 +core 0: 3 0x000000008000003c (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080000040 (0x00000893) li a7, 0 +core 0: 3 0x0000000080000040 (0x00000893) x17 0x0000000000000000 +core 0: 0x0000000080000044 (0x00000913) li s2, 0 +core 0: 3 0x0000000080000044 (0x00000913) x18 0x0000000000000000 +core 0: 0x0000000080000048 (0x00000993) li s3, 0 +core 0: 3 0x0000000080000048 (0x00000993) x19 0x0000000000000000 +core 0: 0x000000008000004c (0x00000a13) li s4, 0 +core 0: 3 0x000000008000004c (0x00000a13) x20 0x0000000000000000 +core 0: 0x0000000080000050 (0x00000a93) li s5, 0 +core 0: 3 0x0000000080000050 (0x00000a93) x21 0x0000000000000000 +core 0: 0x0000000080000054 (0x00000b13) li s6, 0 +core 0: 3 0x0000000080000054 (0x00000b13) x22 0x0000000000000000 +core 0: 0x0000000080000058 (0x00000b93) li s7, 0 +core 0: 3 0x0000000080000058 (0x00000b93) x23 0x0000000000000000 +core 0: 0x000000008000005c (0x00000c13) li s8, 0 +core 0: 3 0x000000008000005c (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080000060 (0x00000c93) li s9, 0 +core 0: 3 0x0000000080000060 (0x00000c93) x25 0x0000000000000000 +core 0: 0x0000000080000064 (0x00000d13) li s10, 0 +core 0: 3 0x0000000080000064 (0x00000d13) x26 0x0000000000000000 +core 0: 0x0000000080000068 (0x00000d93) li s11, 0 +core 0: 3 0x0000000080000068 (0x00000d93) x27 0x0000000000000000 +core 0: 0x000000008000006c (0x00000e13) li t3, 0 +core 0: 3 0x000000008000006c (0x00000e13) x28 0x0000000000000000 +core 0: 0x0000000080000070 (0x00000e93) li t4, 0 +core 0: 3 0x0000000080000070 (0x00000e93) x29 0x0000000000000000 +core 0: 0x0000000080000074 (0x00000f13) li t5, 0 +core 0: 3 0x0000000080000074 (0x00000f13) x30 0x0000000000000000 +core 0: 0x0000000080000078 (0x00000f93) li t6, 0 +core 0: 3 0x0000000080000078 (0x00000f93) x31 0x0000000000000000 +core 0: 0x000000008000007c (0x0001e2b7) lui t0, 0x1e +core 0: 3 0x000000008000007c (0x0001e2b7) x5 0x000000000001e000 +core 0: 0x0000000080000080 (0x6002829b) addiw t0, t0, 1536 +core 0: 3 0x0000000080000080 (0x6002829b) x5 0x000000000001e600 +core 0: 0x0000000080000084 (0x3002a073) csrs mstatus, t0 +core 0: 3 0x0000000080000084 (0x3002a073) c768_mstatus 0x8000000a00006000 +core 0: 0x0000000080000088 (0x00100293) li t0, 1 +core 0: 3 0x0000000080000088 (0x00100293) x5 0x0000000000000001 +core 0: 0x000000008000008c (0x01f29293) slli t0, t0, 31 +core 0: 3 0x000000008000008c (0x01f29293) x5 0x0000000080000000 +core 0: 0x0000000080000090 (0x0002da63) bgez t0, pc + 20 +core 0: 3 0x0000000080000090 (0x0002da63) +core 0: 0x00000000800000a4 (0x00000297) auipc t0, 0x0 +core 0: 3 0x00000000800000a4 (0x00000297) x5 0x00000000800000a4 +core 0: 0x00000000800000a8 (0x09028293) addi t0, t0, 144 +core 0: 3 0x00000000800000a8 (0x09028293) x5 0x0000000080000134 +core 0: 0x00000000800000ac (0x30529073) csrw mtvec, t0 +core 0: 3 0x00000000800000ac (0x30529073) c773_mtvec 0x0000000080000134 +core 0: 0x00000000800000b0 (0x00301073) csrw fcsr, zero +core 0: 3 0x00000000800000b0 (0x00301073) c1_fflags 0x0000000000000000 c2_frm 0x0000000000000000 +core 0: 0x00000000800000b4 (0xf0000053) fmv.w.x ft0, zero +core 0: 3 0x00000000800000b4 (0xf0000053) f0 0xffffffff00000000 +core 0: 0x00000000800000b8 (0xf00000d3) fmv.w.x ft1, zero +core 0: 3 0x00000000800000b8 (0xf00000d3) f1 0xffffffff00000000 +core 0: 0x00000000800000bc (0xf0000153) fmv.w.x ft2, zero +core 0: 3 0x00000000800000bc (0xf0000153) f2 0xffffffff00000000 +core 0: 0x00000000800000c0 (0xf00001d3) fmv.w.x ft3, zero +core 0: 3 0x00000000800000c0 (0xf00001d3) f3 0xffffffff00000000 +core 0: 0x00000000800000c4 (0xf0000253) fmv.w.x ft4, zero +core 0: 3 0x00000000800000c4 (0xf0000253) f4 0xffffffff00000000 +core 0: 0x00000000800000c8 (0xf00002d3) fmv.w.x ft5, zero +core 0: 3 0x00000000800000c8 (0xf00002d3) f5 0xffffffff00000000 +core 0: 0x00000000800000cc (0xf0000353) fmv.w.x ft6, zero +core 0: 3 0x00000000800000cc (0xf0000353) f6 0xffffffff00000000 +core 0: 0x00000000800000d0 (0xf00003d3) fmv.w.x ft7, zero +core 0: 3 0x00000000800000d0 (0xf00003d3) f7 0xffffffff00000000 +core 0: 0x00000000800000d4 (0xf0000453) fmv.w.x fs0, zero +core 0: 3 0x00000000800000d4 (0xf0000453) f8 0xffffffff00000000 +core 0: 0x00000000800000d8 (0xf00004d3) fmv.w.x fs1, zero +core 0: 3 0x00000000800000d8 (0xf00004d3) f9 0xffffffff00000000 +core 0: 0x00000000800000dc (0xf0000553) fmv.w.x fa0, zero +core 0: 3 0x00000000800000dc (0xf0000553) f10 0xffffffff00000000 +core 0: 0x00000000800000e0 (0xf00005d3) fmv.w.x fa1, zero +core 0: 3 0x00000000800000e0 (0xf00005d3) f11 0xffffffff00000000 +core 0: 0x00000000800000e4 (0xf0000653) fmv.w.x fa2, zero +core 0: 3 0x00000000800000e4 (0xf0000653) f12 0xffffffff00000000 +core 0: 0x00000000800000e8 (0xf00006d3) fmv.w.x fa3, zero +core 0: 3 0x00000000800000e8 (0xf00006d3) f13 0xffffffff00000000 +core 0: 0x00000000800000ec (0xf0000753) fmv.w.x fa4, zero +core 0: 3 0x00000000800000ec (0xf0000753) f14 0xffffffff00000000 +core 0: 0x00000000800000f0 (0xf00007d3) fmv.w.x fa5, zero +core 0: 3 0x00000000800000f0 (0xf00007d3) f15 0xffffffff00000000 +core 0: 0x00000000800000f4 (0xf0000853) fmv.w.x fa6, zero +core 0: 3 0x00000000800000f4 (0xf0000853) f16 0xffffffff00000000 +core 0: 0x00000000800000f8 (0xf00008d3) fmv.w.x fa7, zero +core 0: 3 0x00000000800000f8 (0xf00008d3) f17 0xffffffff00000000 +core 0: 0x00000000800000fc (0xf0000953) fmv.w.x fs2, zero +core 0: 3 0x00000000800000fc (0xf0000953) f18 0xffffffff00000000 +core 0: 0x0000000080000100 (0xf00009d3) fmv.w.x fs3, zero +core 0: 3 0x0000000080000100 (0xf00009d3) f19 0xffffffff00000000 +core 0: 0x0000000080000104 (0xf0000a53) fmv.w.x fs4, zero +core 0: 3 0x0000000080000104 (0xf0000a53) f20 0xffffffff00000000 +core 0: 0x0000000080000108 (0xf0000ad3) fmv.w.x fs5, zero +core 0: 3 0x0000000080000108 (0xf0000ad3) f21 0xffffffff00000000 +core 0: 0x000000008000010c (0xf0000b53) fmv.w.x fs6, zero +core 0: 3 0x000000008000010c (0xf0000b53) f22 0xffffffff00000000 +core 0: 0x0000000080000110 (0xf0000bd3) fmv.w.x fs7, zero +core 0: 3 0x0000000080000110 (0xf0000bd3) f23 0xffffffff00000000 +core 0: 0x0000000080000114 (0xf0000c53) fmv.w.x fs8, zero +core 0: 3 0x0000000080000114 (0xf0000c53) f24 0xffffffff00000000 +core 0: 0x0000000080000118 (0xf0000cd3) fmv.w.x fs9, zero +core 0: 3 0x0000000080000118 (0xf0000cd3) f25 0xffffffff00000000 +core 0: 0x000000008000011c (0xf0000d53) fmv.w.x fs10, zero +core 0: 3 0x000000008000011c (0xf0000d53) f26 0xffffffff00000000 +core 0: 0x0000000080000120 (0xf0000dd3) fmv.w.x fs11, zero +core 0: 3 0x0000000080000120 (0xf0000dd3) f27 0xffffffff00000000 +core 0: 0x0000000080000124 (0xf0000e53) fmv.w.x ft8, zero +core 0: 3 0x0000000080000124 (0xf0000e53) f28 0xffffffff00000000 +core 0: 0x0000000080000128 (0xf0000ed3) fmv.w.x ft9, zero +core 0: 3 0x0000000080000128 (0xf0000ed3) f29 0xffffffff00000000 +core 0: 0x000000008000012c (0xf0000f53) fmv.w.x ft10, zero +core 0: 3 0x000000008000012c (0xf0000f53) f30 0xffffffff00000000 +core 0: 0x0000000080000130 (0xf0000fd3) fmv.w.x ft11, zero +core 0: 3 0x0000000080000130 (0xf0000fd3) f31 0xffffffff00000000 +core 0: 0x0000000080000134 (0x00000297) auipc t0, 0x0 +core 0: 3 0x0000000080000134 (0x00000297) x5 0x0000000080000134 +core 0: 0x0000000080000138 (0x04428293) addi t0, t0, 68 +core 0: 3 0x0000000080000138 (0x04428293) x5 0x0000000080000178 +core 0: 0x000000008000013c (0x30529073) csrw mtvec, t0 +core 0: 3 0x000000008000013c (0x30529073) c773_mtvec 0x0000000080000178 +core 0: 0x0000000080000140 (0x00003197) auipc gp, 0x3 +core 0: 3 0x0000000080000140 (0x00003197) x3 0x0000000080003140 +core 0: 0x0000000080000144 (0x17918193) addi gp, gp, 377 +core 0: 3 0x0000000080000144 (0x17918193) x3 0x00000000800032b9 +core 0: 0x0000000080000148 (0x00003217) auipc tp, 0x3 +core 0: 3 0x0000000080000148 (0x00003217) x4 0x0000000080003148 +core 0: 0x000000008000014c (0xfb720213) addi tp, tp, -73 +core 0: 3 0x000000008000014c (0xfb720213) x4 0x00000000800030ff +core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x00000000800030c0 +core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 +core 0: 0x0000000080000158 (0x00100593) li a1, 1 +core 0: 3 0x0000000080000158 (0x00100593) x11 0x0000000000000001 +core 0: 0x000000008000015c (0x00b57063) bgeu a0, a1, pc + 0 +core 0: 3 0x000000008000015c (0x00b57063) +core 0: 0x0000000080000160 (0x00150113) addi sp, a0, 1 +core 0: 3 0x0000000080000160 (0x00150113) x2 0x0000000000000001 +core 0: 0x0000000080000164 (0x01111113) slli sp, sp, 17 +core 0: 3 0x0000000080000164 (0x01111113) x2 0x0000000000020000 +core 0: 0x0000000080000168 (0x00410133) add sp, sp, tp +core 0: 3 0x0000000080000168 (0x00410133) x2 0x00000000800230c0 +core 0: 0x000000008000016c (0x01151613) slli a2, a0, 17 +core 0: 3 0x000000008000016c (0x01151613) x12 0x0000000000000000 +core 0: 0x0000000080000170 (0x00c20233) add tp, tp, a2 +core 0: 3 0x0000000080000170 (0x00c20233) x4 0x00000000800030c0 +core 0: 0x0000000080000174 (0x26d0106f) j pc + 0x1a6c +core 0: 3 0x0000000080000174 (0x26d0106f) +core 0: >>>> _init +core 0: 0x0000000080001be0 (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001be0 (0xbd010113) x2 0x0000000080022c90 +core 0: 0x0000000080001be4 (0xde718613) addi a2, gp, -537 +core 0: 3 0x0000000080001be4 (0xde718613) x12 0x00000000800030a0 +core 0: 0x0000000080001be8 (0xde718793) addi a5, gp, -537 +core 0: 3 0x0000000080001be8 (0xde718793) x15 0x00000000800030a0 +core 0: 0x0000000080001bec (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001bec (0x41413023) mem 0x0000000080023090 0x0000000000000000 +core 0: 0x0000000080001bf0 (0x40f60833) sub a6, a2, a5 +core 0: 3 0x0000000080001bf0 (0x40f60833) x16 0x0000000000000000 +core 0: 0x0000000080001bf4 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001bf4 (0x03f10a13) x20 0x0000000080022ccf +core 0: 0x0000000080001bf8 (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001bf8 (0x42813023) mem 0x00000000800230b0 0x0000000000000000 +core 0: 0x0000000080001bfc (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001bfc (0x40913c23) mem 0x00000000800230a8 0x0000000000000000 +core 0: 0x0000000080001c00 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001c00 (0x00050413) x8 0x0000000000000000 +core 0: 0x0000000080001c04 (0x00058493) mv s1, a1 +core 0: 3 0x0000000080001c04 (0x00058493) x9 0x0000000000000001 +core 0: 0x0000000080001c08 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c08 (0x42113423) mem 0x00000000800230b8 0x0000000000000000 +core 0: 0x0000000080001c0c (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c0c (0x41213823) mem 0x00000000800230a0 0x0000000000000000 +core 0: 0x0000000080001c10 (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c10 (0x41313423) mem 0x0000000080023098 0x0000000000000000 +core 0: 0x0000000080001c14 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c14 (0x3f513c23) mem 0x0000000080023088 0x0000000000000000 +core 0: 0x0000000080001c18 (0x00080593) mv a1, a6 +core 0: 3 0x0000000080001c18 (0x00080593) x11 0x0000000000000000 +core 0: 0x0000000080001c1c (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c1c (0xfc0a7a13) x20 0x0000000080022cc0 +core 0: 0x0000000080001c20 (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c20 (0x00020513) x10 0x00000000800030c0 +core 0: 0x0000000080001c24 (0x00020693) mv a3, tp +core 0: 3 0x0000000080001c24 (0x00020693) x13 0x00000000800030c0 +core 0: 0x0000000080001c28 (0x0c05f757) vsetvli a4, a1, e8, m1, ta, ma +core 0: 3 0x0000000080001c28 (0x0c05f757) x14 0x0000000000000000 +core 0: 0x0000000080001c2c (0x02078087) vle8.v v1, (a5) +core 0: 3 0x0000000080001c2c (0x02078087) mem 0x0000000000000000 +core 0: 0x0000000080001c30 (0x40e585b3) sub a1, a1, a4 +core 0: 3 0x0000000080001c30 (0x40e585b3) x11 0x0000000000000000 +core 0: 0x0000000080001c34 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c34 (0x00e787b3) x15 0x00000000800030a0 +core 0: 0x0000000080001c38 (0x020680a7) vse8.v v1, (a3) +core 0: 3 0x0000000080001c38 (0x020680a7) mem 0x0000000000000000 0x00 +core 0: 0x0000000080001c3c (0x00e686b3) add a3, a3, a4 +core 0: 3 0x0000000080001c3c (0x00e686b3) x13 0x00000000800030c0 +core 0: 0x0000000080001c40 (0xfe0594e3) bnez a1, pc - 24 +core 0: 3 0x0000000080001c40 (0xfe0594e3) +core 0: 0x0000000080001c44 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001c44 (0x00001797) x15 0x0000000080002c44 +core 0: 0x0000000080001c48 (0x4c078793) addi a5, a5, 1216 +core 0: 3 0x0000000080001c48 (0x4c078793) x15 0x0000000080003104 +core 0: 0x0000000080001c4c (0x01050533) add a0, a0, a6 +core 0: 3 0x0000000080001c4c (0x01050533) x10 0x00000000800030c0 +core 0: 0x0000000080001c50 (0x40c78633) sub a2, a5, a2 +core 0: 3 0x0000000080001c50 (0x40c78633) x12 0x0000000000000064 +core 0: 0x0000000080001c54 (0xf21ff0ef) jal pc - 0xe0 +core 0: 3 0x0000000080001c54 (0xf21ff0ef) x1 0x0000000080001c58 +core 0: >>>> memset +core 0: 0x0000000080001b74 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b74 (0x00c567b3) x15 0x00000000800030e4 +core 0: 0x0000000080001b78 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b78 (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b7c (0x00c50733) add a4, a0, a2 +core 0: 3 0x0000000080001b7c (0x00c50733) x14 0x0000000080003124 +core 0: 0x0000000080001b80 (0x02078663) beqz a5, pc + 44 +core 0: 3 0x0000000080001b80 (0x02078663) +core 0: 0x0000000080001b84 (0x0c0077d7) vsetvli a5, zero, e8, m1, ta, ma +core 0: 3 0x0000000080001b84 (0x0c0077d7) x15 0x0000000000000010 +core 0: 0x0000000080001b88 (0x5e05c0d7) vmv.v.x v1, a1 +core 0: 3 0x0000000080001b88 (0x5e05c0d7) e8 m1 l10 v1 0x00000000000000000000000000000000 +core 0: 0x0000000080001b8c (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b8c (0x00050793) x15 0x00000000800030c0 +core 0: 0x0000000080001b90 (0x04e57663) bgeu a0, a4, pc + 76 +core 0: 3 0x0000000080001b90 (0x04e57663) +core 0: 0x0000000080001b94 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b94 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b98 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b98 (0x020780a7) mem 0x00000000800030c0 0x00 +core 0: 0x0000000080001b9c (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b9c (0x40e60633) x12 0x0000000000000054 +core 0: 0x0000000080001ba0 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba0 (0x00e787b3) x15 0x00000000800030d0 +core 0: 0x0000000080001ba4 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba4 (0xfe0618e3) +core 0: 0x0000000080001b94 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b94 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b98 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b98 (0x020780a7) mem 0x00000000800030d0 0x00 +core 0: 0x0000000080001b9c (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b9c (0x40e60633) x12 0x0000000000000044 +core 0: 0x0000000080001ba0 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba0 (0x00e787b3) x15 0x00000000800030e0 +core 0: 0x0000000080001ba4 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba4 (0xfe0618e3) +core 0: 0x0000000080001b94 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b94 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b98 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b98 (0x020780a7) mem 0x00000000800030e0 0x00 +core 0: 0x0000000080001b9c (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b9c (0x40e60633) x12 0x0000000000000034 +core 0: 0x0000000080001ba0 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba0 (0x00e787b3) x15 0x00000000800030f0 +core 0: 0x0000000080001ba4 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba4 (0xfe0618e3) +core 0: 0x0000000080001b94 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b94 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b98 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b98 (0x020780a7) mem 0x00000000800030f0 0x00 +core 0: 0x0000000080001b9c (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b9c (0x40e60633) x12 0x0000000000000024 +core 0: 0x0000000080001ba0 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba0 (0x00e787b3) x15 0x0000000080003100 +core 0: 0x0000000080001ba4 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba4 (0xfe0618e3) +core 0: 0x0000000080001b94 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b94 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b98 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b98 (0x020780a7) mem 0x0000000080003100 0x00 +core 0: 0x0000000080001b9c (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b9c (0x40e60633) x12 0x0000000000000014 +core 0: 0x0000000080001ba0 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba0 (0x00e787b3) x15 0x0000000080003110 +core 0: 0x0000000080001ba4 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba4 (0xfe0618e3) +core 0: 0x0000000080001b94 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b94 (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001b98 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b98 (0x020780a7) mem 0x0000000080003118 0x00 +core 0: 0x0000000080001b9c (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b9c (0x40e60633) x12 0x000000000000000a +core 0: 0x0000000080001ba0 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba0 (0x00e787b3) x15 0x000000008000311a +core 0: 0x0000000080001ba4 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba4 (0xfe0618e3) +core 0: 0x0000000080001b94 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b94 (0x0c067757) x14 0x000000000000000a +core 0: 0x0000000080001b98 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b98 (0x020780a7) mem 0x0000000080003120 0x00 +core 0: 0x0000000080001b9c (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b9c (0x40e60633) x12 0x0000000000000000 +core 0: 0x0000000080001ba0 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001ba0 (0x00e787b3) x15 0x0000000080003124 +core 0: 0x0000000080001ba4 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba4 (0xfe0618e3) +core 0: 0x0000000080001ba8 (0x00008067) ret +core 0: 3 0x0000000080001ba8 (0x00008067) +core 0: 0x0000000080001c58 (0x00048593) mv a1, s1 +core 0: 3 0x0000000080001c58 (0x00048593) x11 0x0000000000000001 +core 0: 0x0000000080001c5c (0x00040513) mv a0, s0 +core 0: 3 0x0000000080001c5c (0x00040513) x10 0x0000000000000000 +core 0: 0x0000000080001c60 (0xd29ff0ef) jal pc - 0x2d8 +core 0: 3 0x0000000080001c60 (0xd29ff0ef) x1 0x0000000080001c64 +core 0: >>>> thread_entry +core 0: 0x0000000080001988 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x0000000080001988 (0x00051463) +core 0: 0x000000008000198c (0x00008067) ret +core 0: 3 0x000000008000198c (0x00008067) +core 0: 0x0000000080001c64 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c64 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c68 (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c68 (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c6c (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c6c (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c70 (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c70 (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c74 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c74 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c78 (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c78 (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c7c (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c7c (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c80 (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c80 (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c84 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c84 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c88 (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c88 (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c8c (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c8c (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c90 (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c90 (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c94 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c94 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c98 (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c98 (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001c9c (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001c9c (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001ca0 (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001ca0 (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001ca4 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001ca4 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001ca8 (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001ca8 (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001cac (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001cac (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001cb0 (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001cb0 (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001cb4 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001cb4 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001cb8 (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001cb8 (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001cbc (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001cbc (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001cc0 (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001cc0 (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001cc4 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001cc4 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cc8 (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cc8 (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001ccc (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001ccc (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001cd0 (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001cd0 (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cd4 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cd4 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cd8 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cd8 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cdc (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001cdc (0x16c000ef) x1 0x0000000080001ce0 +core 0: >>>> main +core 0: 0x0000000080001e48 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e48 (0xc00027f3) x15 0x00000000000003fc +core 0: 0x0000000080001e4c (0x00a00893) li a7, 10 +core 0: 3 0x0000000080001e4c (0x00a00893) x17 0x000000000000000a +core 0: 0x0000000080001e50 (0x00001817) auipc a6, 0x1 +core 0: 3 0x0000000080001e50 (0x00001817) x16 0x0000000080002e50 +core 0: 0x0000000080001e54 (0xc7080813) addi a6, a6, -912 +core 0: 3 0x0000000080001e54 (0xc7080813) x16 0x0000000080002ac0 +core 0: 0x0000000080001e58 (0x08000513) li a0, 128 +core 0: 3 0x0000000080001e58 (0x08000513) x10 0x0000000000000080 +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000009 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000008 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000007 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000006 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000005 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000004 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000003 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000002 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000001 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e5c (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080001e5c (0x00000697) x13 0x0000000080001e5c +core 0: 0x0000000080001e60 (0x07468693) addi a3, a3, 116 +core 0: 3 0x0000000080001e60 (0x07468693) x13 0x0000000080001ed0 +core 0: 0x0000000080001e64 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080001e64 (0x00000617) x12 0x0000000080001e64 +core 0: 0x0000000080001e68 (0x46c60613) addi a2, a2, 1132 +core 0: 3 0x0000000080001e68 (0x46c60613) x12 0x00000000800022d0 +core 0: 0x0000000080001e6c (0x00000793) li a5, 0 +core 0: 3 0x0000000080001e6c (0x00000793) x15 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ed0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000001 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ed8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ed8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ac8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000002 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000014 mem 0x00000000800022d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ac8 0x0000000000000014 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ee0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000003 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000001e mem 0x00000000800022e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad0 0x000000000000001e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ee8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ee8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ad8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000004 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ad8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ef0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000005 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000032 mem 0x00000000800022f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae0 0x0000000000000032 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ef8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800022f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ef8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ae8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000006 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ae8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f00 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002300 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f00 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000007 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f08 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002308 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f08 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002af8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000008 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000050 mem 0x0000000080002308 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002af8 0x0000000000000050 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f10 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002310 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f10 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000009 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f18 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002318 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f18 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000064 mem 0x0000000080002318 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b08 0x0000000000000064 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f20 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002320 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f20 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000006e mem 0x0000000080002320 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b10 0x000000000000006e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f28 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002328 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f28 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000078 mem 0x0000000080002328 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b18 0x0000000000000078 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f30 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002330 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f30 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f38 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002338 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f38 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f40 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002340 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f40 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000000f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000096 mem 0x0000000080002340 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b30 0x0000000000000096 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f48 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002348 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f48 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000010 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f50 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002350 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f50 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000011 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f58 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002358 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f58 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000012 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000b4 mem 0x0000000080002358 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b48 0x00000000000000b4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f60 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002360 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f60 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000013 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000be mem 0x0000000080002360 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b50 0x00000000000000be +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f68 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002368 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f68 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000014 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f70 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002370 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f70 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000015 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000d2 mem 0x0000000080002370 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b60 0x00000000000000d2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f78 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002378 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f78 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000016 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000dc mem 0x0000000080002378 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b68 0x00000000000000dc +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f80 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002380 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f80 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000017 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f88 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002388 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001f88 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000018 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000000f0 mem 0x0000000080002388 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b78 0x00000000000000f0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f90 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002390 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f90 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000019 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001f98 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002398 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001f98 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000010e mem 0x00000000800023a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b90 0x000000000000010e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fa8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fa8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002b98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000118 mem 0x00000000800023a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002b98 0x0000000000000118 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fb0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000122 mem 0x00000000800023b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba0 0x0000000000000122 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fb8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fb8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ba8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ba8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fc0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000001f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fc8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fc8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000020 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000140 mem 0x00000000800023c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bb8 0x0000000000000140 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fd0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000021 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000014a mem 0x00000000800023d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc0 0x000000000000014a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fd8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fd8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000022 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001fe0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000023 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001fe8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001fe8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000024 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000168 mem 0x00000000800023e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bd8 0x0000000000000168 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080001ff0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000025 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000172 mem 0x00000000800023f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be0 0x0000000000000172 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080001ff8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800023f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080001ff8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002be8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000026 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002be8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002000 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002400 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002000 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000027 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000186 mem 0x0000000080002400 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf0 0x0000000000000186 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002008 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002408 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002008 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002bf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000028 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000190 mem 0x0000000080002408 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002bf8 0x0000000000000190 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002010 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002410 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002010 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000029 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002018 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002418 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002018 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001a4 mem 0x0000000080002418 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c08 0x00000000000001a4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002020 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002420 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002020 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002028 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002428 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002028 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002030 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002430 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002030 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001c2 mem 0x0000000080002430 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c20 0x00000000000001c2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002038 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002438 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002038 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002040 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002440 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002040 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000002f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001d6 mem 0x0000000080002440 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c30 0x00000000000001d6 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002048 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002448 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002048 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000030 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001e0 mem 0x0000000080002448 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c38 0x00000000000001e0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002050 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002450 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002050 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000031 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002058 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002458 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002058 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000032 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001f4 mem 0x0000000080002458 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c48 0x00000000000001f4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002060 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002460 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002060 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000033 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000001fe mem 0x0000000080002460 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c50 0x00000000000001fe +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002068 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002468 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002068 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000034 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002070 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002470 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002070 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000035 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002078 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002478 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002078 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000036 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000021c mem 0x0000000080002478 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c68 0x000000000000021c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002080 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002480 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002080 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000037 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002088 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002488 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002088 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000038 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000230 mem 0x0000000080002488 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c78 0x0000000000000230 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002090 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002490 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002090 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000039 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000023a mem 0x0000000080002490 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c80 0x000000000000023a +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002098 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002498 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002098 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000244 mem 0x0000000080002498 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c88 0x0000000000000244 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002c98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002c98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ca8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000026c mem 0x00000000800024b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ca8 0x000000000000026c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000003f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000040 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000280 mem 0x00000000800024c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cb8 0x0000000000000280 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000041 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000042 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000294 mem 0x00000000800024d8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cc8 0x0000000000000294 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000043 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000029e mem 0x00000000800024e0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd0 0x000000000000029e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000044 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cd8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800020f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000045 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002b2 mem 0x00000000800024f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce0 0x00000000000002b2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800020f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800024f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800020f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ce8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000046 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ce8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002100 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002500 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002100 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000047 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002108 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002508 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002108 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002cf8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000048 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002d0 mem 0x0000000080002508 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002cf8 0x00000000000002d0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002110 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002510 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002110 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000049 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002118 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002518 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002118 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002e4 mem 0x0000000080002518 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d08 0x00000000000002e4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002120 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002520 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002120 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002ee mem 0x0000000080002520 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d10 0x00000000000002ee +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002128 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002528 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002128 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000002f8 mem 0x0000000080002528 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d18 0x00000000000002f8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002130 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002530 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002130 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d20 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002138 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002538 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002138 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002140 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002540 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002140 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000004f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000316 mem 0x0000000080002540 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d30 0x0000000000000316 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002148 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002548 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002148 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000050 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d38 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002150 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002550 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002150 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000051 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002158 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002558 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002158 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000052 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000334 mem 0x0000000080002558 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d48 0x0000000000000334 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002160 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002560 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002160 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000053 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000033e mem 0x0000000080002560 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d50 0x000000000000033e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002168 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002568 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002168 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000054 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002170 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002570 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002170 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000055 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000352 mem 0x0000000080002570 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d60 0x0000000000000352 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002178 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002578 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002178 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000056 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000035c mem 0x0000000080002578 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d68 0x000000000000035c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002180 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002580 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002180 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000057 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002188 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002588 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002188 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000058 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000370 mem 0x0000000080002588 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d78 0x0000000000000370 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002190 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002590 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002190 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000059 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d80 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002198 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002598 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002198 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d88 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000038e mem 0x00000000800025a0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d90 0x000000000000038e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002d98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000398 mem 0x00000000800025a8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002d98 0x0000000000000398 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003a2 mem 0x00000000800025b0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da0 0x00000000000003a2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002da8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002da8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000005f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002db8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000060 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003c0 mem 0x00000000800025c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002db8 0x00000000000003c0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021d0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000061 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003ca mem 0x00000000800025d0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc0 0x00000000000003ca +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021d8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025d8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021d8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dc8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000062 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dc8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021e0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000063 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021e8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025e8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021e8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002dd8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000064 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003e8 mem 0x00000000800025e8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002dd8 0x00000000000003e8 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800021f0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000065 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000003f2 mem 0x00000000800025f0 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de0 0x00000000000003f2 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800021f8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800025f8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800021f8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002de8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000066 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002de8 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002200 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002600 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002200 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000067 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000406 mem 0x0000000080002600 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df0 0x0000000000000406 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002208 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002608 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002208 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002df8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000068 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000410 mem 0x0000000080002608 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002df8 0x0000000000000410 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002210 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002610 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002210 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e00 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000069 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e00 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002218 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002618 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002218 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e08 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000424 mem 0x0000000080002618 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e08 0x0000000000000424 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002220 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002620 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002220 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e10 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e10 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002228 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002628 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002228 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e18 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e18 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002230 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002630 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002230 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e20 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000442 mem 0x0000000080002630 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e20 0x0000000000000442 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002238 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002638 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002238 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e28 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e28 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002240 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002640 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002240 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e30 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000006f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000456 mem 0x0000000080002640 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e30 0x0000000000000456 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002248 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002648 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002248 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e38 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000070 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000460 mem 0x0000000080002648 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e38 0x0000000000000460 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002250 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002650 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002250 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e40 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000071 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e40 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002258 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002658 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002258 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e48 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000072 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000474 mem 0x0000000080002658 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e48 0x0000000000000474 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002260 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002660 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002260 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e50 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000073 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000047e mem 0x0000000080002660 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e50 0x000000000000047e +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002268 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002668 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002268 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e58 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000074 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e58 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002270 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002670 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002270 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e60 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000075 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e60 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002278 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002678 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002278 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e68 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000076 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x000000000000049c mem 0x0000000080002678 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e68 0x000000000000049c +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002280 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002680 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x0000000080002280 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e70 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000077 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e70 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002288 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002688 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002288 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e78 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000078 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004b0 mem 0x0000000080002688 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e78 0x00000000000004b0 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002290 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002690 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002290 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e80 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000079 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ba mem 0x0000000080002690 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e80 0x00000000000004ba +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x0000000080002298 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x0000000080002698 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x0000000080002298 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e88 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007a +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004c4 mem 0x0000000080002698 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e88 0x00000000000004c4 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e90 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007b +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e90 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022a8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026a8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022a8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002e98 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007c +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002e98 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022b0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007d +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022b8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026b8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022b8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002ea8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007e +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x00000000000004ec mem 0x00000000800026b8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002ea8 0x00000000000004ec +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000000 mem 0x00000000800022c0 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb0 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x000000000000007f +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb0 0x0000000000000000 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022c8 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026c8 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e70 (0x0006b703) ld a4, 0(a3) +core 0: 3 0x0000000080001e70 (0x0006b703) x14 0x0000000000000001 mem 0x00000000800022c8 +core 0: 0x0000000080001e74 (0x2107e5b3) sh3add a1, a5, a6 +core 0: 3 0x0000000080001e74 (0x2107e5b3) x11 0x0000000080002eb8 +core 0: 0x0000000080001e78 (0x0017879b) addiw a5, a5, 1 +core 0: 3 0x0000000080001e78 (0x0017879b) x15 0x0000000000000080 +core 0: 0x0000000080001e7c (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001e7c (0x00070463) +core 0: 0x0000000080001e80 (0x00063703) ld a4, 0(a2) +core 0: 3 0x0000000080001e80 (0x00063703) x14 0x0000000000000500 mem 0x00000000800026c8 +core 0: 0x0000000080001e84 (0x00e5b023) sd a4, 0(a1) +core 0: 3 0x0000000080001e84 (0x00e5b023) mem 0x0000000080002eb8 0x0000000000000500 +core 0: 0x0000000080001e88 (0x00868693) addi a3, a3, 8 +core 0: 3 0x0000000080001e88 (0x00868693) x13 0x00000000800022d0 +core 0: 0x0000000080001e8c (0x00860613) addi a2, a2, 8 +core 0: 3 0x0000000080001e8c (0x00860613) x12 0x00000000800026d0 +core 0: 0x0000000080001e90 (0xfea790e3) bne a5, a0, pc - 32 +core 0: 3 0x0000000080001e90 (0xfea790e3) +core 0: 0x0000000080001e94 (0xfff8889b) addiw a7, a7, -1 +core 0: 3 0x0000000080001e94 (0xfff8889b) x17 0x0000000000000000 +core 0: 0x0000000080001e98 (0xfc0892e3) bnez a7, pc - 60 +core 0: 3 0x0000000080001e98 (0xfc0892e3) +core 0: 0x0000000080001e9c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e9c (0xc00027f3) x15 0x0000000000004b12 +core 0: 0x0000000080001ea0 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001ea0 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001ea4 (0x00008067) ret +core 0: 3 0x0000000080001ea4 (0x00008067) +core 0: 0x0000000080001ce0 (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001ce0 (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001ce4 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001ce4 (0x000a0493) x9 0x0000000080022cc0 +core 0: 0x0000000080001ce8 (0xcf718413) addi s0, gp, -777 +core 0: 3 0x0000000080001ce8 (0xcf718413) x8 0x0000000080002fb0 +core 0: 0x0000000080001cec (0xc0718913) addi s2, gp, -1017 +core 0: 3 0x0000000080001cec (0xc0718913) x18 0x0000000080002ec0 +core 0: 0x0000000080001cf0 (0xde718993) addi s3, gp, -537 +core 0: 3 0x0000000080001cf0 (0xde718993) x19 0x00000000800030a0 +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ec0 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fb0 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022cc0 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002fb0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022cc0 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022cc0 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000000004b12 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000500 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cc0 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cc0 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ec0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc0 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc1 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc2 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc3 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc4 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc5 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc6 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc7 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc8 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cc9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cc9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cc9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cc9 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cc9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cca +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cca +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cca mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cca 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cca mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ccb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ccb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022cc0 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022cc0 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ec0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022ccb mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022ccb 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022ccb mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002fb0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080002fb8 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002ec8 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022ccb +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ec8 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fb8 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022ccb +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002fb8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022ccb +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022ccb +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022ccb +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022ccb +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022ccb +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ec8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ccb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ccb 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ccb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ccc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ccc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ccc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ccc 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ccc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ccd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ccd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ccd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ccd 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ccd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cce +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cce +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cce mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cce 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cce mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ccf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ccf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ccf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ccf 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ccf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd0 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd1 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd2 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd3 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd4 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd5 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022ccb mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022ccb mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ec8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022cd6 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022cd6 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022cd6 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002fb8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080002fc0 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002ed0 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022cd6 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ed0 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fc0 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022cd6 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002fc0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022cd6 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022cd6 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022cd6 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cd6 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cd6 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ed0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd6 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd7 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd8 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cd9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cd9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cd9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cd9 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cd9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cda +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cda +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cda mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cda 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cda mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cdb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cdb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cdb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cdb 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cdb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cdc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cdc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cdc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cdc 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cdc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cdd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cdd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cdd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cdd 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cdd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cde +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cde +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cde mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cde 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cde mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cdf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cdf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cdf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cdf 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cdf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce0 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022cd6 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022cd6 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ed0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022ce1 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022ce1 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022ce1 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002fc0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080002fc8 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002ed8 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022ce1 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ed8 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fc8 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022ce1 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002fc8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022ce1 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022ce1 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022ce1 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022ce1 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022ce1 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ed8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce1 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce2 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce3 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce4 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce5 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce6 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce7 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce8 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ce9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ce9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ce9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ce9 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ce9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cea +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cea +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cea mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cea 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cea mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ceb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ceb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ceb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ceb 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ceb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cec +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cec +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022ce1 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022ce1 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ed8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022cec mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022cec 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022cec mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002fc8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080002fd0 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002ee0 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022cec +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ee0 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fd0 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022cec +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002fd0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022cec +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022cec +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022cec +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cec +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cec +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ee0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cec mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cec 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cec mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ced +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ced +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ced mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ced 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ced mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cee +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cee +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cee mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cee 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cee mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cef +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cef +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cef mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cef 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cef mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf0 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf1 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf2 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf3 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf4 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf5 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf6 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022cec mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022cec mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ee0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022cf7 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022cf7 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022cf7 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002fd0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080002fd8 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002ee8 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022cf7 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ee8 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fd8 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022cf7 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002fd8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022cf7 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022cf7 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022cf7 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022cf7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022cf7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ee8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf7 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf8 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cf9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cf9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cf9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cf9 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cf9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfa +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfa +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfa mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfa 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfa mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfb 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfc 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfd 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cfe +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cfe +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cfe mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cfe 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cfe mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022cff +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022cff +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022cff mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022cff 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022cff mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d00 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d00 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d00 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d00 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d00 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d01 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d01 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d01 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d01 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d01 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d02 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d02 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022cf7 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022cf7 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ee8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d02 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d02 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d02 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002fd8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080002fe0 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002ef0 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d02 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ef0 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fe0 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d02 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002fe0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d02 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d02 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d02 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d02 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d02 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ef0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d02 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d02 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d02 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d03 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d03 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d03 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d03 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d03 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d04 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d04 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d04 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d04 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d04 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d05 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d05 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d05 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d05 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d05 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d06 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d06 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d06 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d06 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d06 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d07 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d07 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d07 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d07 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d07 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d08 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d08 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d08 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d08 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d08 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d09 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d09 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d09 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d09 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d09 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0a 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0b 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0c 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d02 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d02 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ef0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d0d mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d0d 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d0d mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002fe0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080002fe8 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002ef8 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d0d +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002ef8 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002fe8 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d0d +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002fe8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d0d +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d0d +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d0d +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d0d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d0d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002ef8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0d 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0e 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d0f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d0f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d0f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d0f 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d0f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d10 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d10 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d10 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d10 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d10 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d11 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d11 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d11 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d11 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d11 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d12 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d12 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d12 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d12 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d12 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d13 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d13 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d13 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d13 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d13 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d14 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d14 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d14 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d14 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d14 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d15 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d15 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d15 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d15 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d15 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d16 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d16 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d16 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d16 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d16 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d17 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d17 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d17 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d17 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d17 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d18 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d18 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d0d mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d0d mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002ef8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d18 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d18 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d18 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002fe8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080002ff0 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f00 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d18 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f00 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ff0 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d18 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002ff0 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d18 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d18 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d18 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d18 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d18 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f00 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d18 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d18 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d18 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d19 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d19 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d19 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d19 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d19 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1a 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1b 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1c 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1d 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1e 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d1f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d1f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d1f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d1f 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d1f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d20 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d20 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d20 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d20 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d20 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d21 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d21 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d21 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d21 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d21 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d22 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d22 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d22 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d22 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d22 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d23 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d23 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d18 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d18 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f00 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d23 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d23 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d23 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002ff0 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080002ff8 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f08 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d23 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f08 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ff8 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d23 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080002ff8 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d23 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d23 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d23 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d23 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d23 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f08 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d23 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d23 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d23 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d24 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d24 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d24 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d24 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d24 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d25 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d25 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d25 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d25 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d25 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d26 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d26 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d26 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d26 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d26 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d27 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d27 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d27 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d27 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d27 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d28 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d28 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d28 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d28 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d28 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d29 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d29 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d29 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d29 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d29 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2a 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2b 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2c 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2d 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d23 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d23 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f08 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d2e mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d2e 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d2e mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080002ff8 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003000 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f10 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d2e +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f10 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003000 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d2e +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003000 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d2e +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d2e +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d2e +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d2e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d2e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f10 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2e 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d2f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d2f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d2f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d2f 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d2f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d30 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d30 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d30 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d30 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d30 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d31 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d31 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d31 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d31 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d31 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d32 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d32 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d32 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d32 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d32 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d33 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d33 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d33 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d33 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d33 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d34 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d34 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d34 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d34 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d34 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d35 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d35 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d35 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d35 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d35 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d36 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d36 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d36 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d36 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d36 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d37 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d37 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d37 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d37 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d37 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d38 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d38 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d38 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d38 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d38 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d39 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d39 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d2e mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d2e mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f10 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d39 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d39 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d39 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003000 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003008 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f18 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d39 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f18 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003008 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d39 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003008 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d39 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d39 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d39 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d39 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d39 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f18 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d39 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d39 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d39 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3a 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3b 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3c 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3d 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3e 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d3f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d3f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d3f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d3f 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d3f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d40 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d40 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d40 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d40 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d40 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d41 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d41 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d41 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d41 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d42 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d42 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d42 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d42 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d43 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d43 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d43 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d43 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d44 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d44 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d39 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d39 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f18 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d44 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003008 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003010 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f20 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d44 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f20 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003010 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d44 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003010 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d44 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d44 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d44 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d44 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d44 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f20 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d44 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d44 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d45 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d45 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d45 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d45 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d46 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d46 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d46 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d46 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d47 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d47 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d47 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d47 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d48 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d48 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d48 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d48 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d49 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d49 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d49 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d49 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4a 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4b 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4c 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4d 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4e 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d4f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d4f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d44 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d44 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f20 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d4f 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003010 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003018 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f28 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d4f +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f28 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003018 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d4f +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003018 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d4f +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d4f +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d4f +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d4f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d4f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f28 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d4f 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d4f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d50 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d50 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d50 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d50 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d51 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d51 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d51 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d51 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d52 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d52 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d52 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d52 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d53 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d53 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d53 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d53 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d54 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d54 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d54 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d54 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d55 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d55 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d55 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d55 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d56 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d56 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d56 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d56 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d57 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d57 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d57 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d57 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d58 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d58 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d58 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d58 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d59 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d59 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d59 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d59 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d4f mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d4f mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f28 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d5a 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003018 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003020 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f30 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d5a +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f30 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003020 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d5a +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003020 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d5a +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d5a +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d5a +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d5a +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d5a +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f30 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5a 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5b 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5c 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5d 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5e 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d5f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d5f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d5f 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d5f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d60 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d60 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d60 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d60 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d61 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d61 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d61 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d61 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d62 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d62 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d62 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d62 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d63 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d63 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d63 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d63 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d64 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d64 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d64 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d64 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d65 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d65 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d5a mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d5a mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f30 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d65 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003020 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003028 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f38 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d65 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f38 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003028 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d65 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003028 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d65 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d65 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d65 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d65 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d65 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f38 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d65 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d65 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d66 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d66 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d66 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d66 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d67 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d67 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d67 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d67 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d68 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d68 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d68 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d68 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d69 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d69 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d69 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d69 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6a 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6b 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6c 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6d 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6e 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d6f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d6f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d6f 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d6f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d70 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d70 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d65 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d65 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f38 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d70 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003028 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003030 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f40 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d70 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f40 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003030 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d70 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003030 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d70 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d70 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d70 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d70 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d70 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f40 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d70 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d70 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d71 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d71 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d71 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d71 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d72 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d72 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d72 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d72 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d73 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d73 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d73 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d73 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d74 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d74 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d74 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d74 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d75 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d75 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d75 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d75 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d76 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d76 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d76 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d76 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d77 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d77 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d77 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d77 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d78 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d78 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d78 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d78 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d79 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d79 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d79 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d79 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7a 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d70 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d70 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f40 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d7b 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003030 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003038 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f48 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d7b +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f48 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003038 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d7b +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003038 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d7b +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d7b +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d7b +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d7b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d7b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f48 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7b 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7c 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7d 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7e 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d7f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d7f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d7f 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d7f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d80 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d80 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d80 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d80 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d81 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d81 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d81 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d81 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d82 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d82 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d82 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d82 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d83 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d83 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d83 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d83 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d84 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d84 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d84 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d84 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d85 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d85 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d85 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d85 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d86 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d86 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d7b mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d7b mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f48 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d86 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003038 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003040 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f50 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d86 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f50 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003040 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d86 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003040 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d86 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d86 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d86 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d86 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d86 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f50 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d86 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d86 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d87 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d87 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d87 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d87 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d88 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d88 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d88 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d88 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d89 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d89 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d89 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d89 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8a 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8b 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8c 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8d 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8e 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d8f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d8f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d8f 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d8f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d90 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d90 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d90 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d90 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d91 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d91 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d86 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d86 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f50 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d91 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003040 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003048 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f58 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d91 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f58 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003048 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d91 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003048 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d91 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d91 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d91 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d91 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d91 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f58 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d91 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d91 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d92 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d92 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d92 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d92 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d93 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d93 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d93 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d93 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d94 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d94 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d94 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d94 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d95 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d95 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d95 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d95 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d96 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d96 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d96 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d96 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d97 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d97 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d97 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d97 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d98 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d98 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d98 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d98 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d99 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d99 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d99 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d99 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9a 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9a mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9b +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9b +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9b 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9b mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9c +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9c +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d91 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d91 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f58 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022d9c 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003048 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003050 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f60 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022d9c +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f60 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003050 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022d9c +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003050 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022d9c +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022d9c +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022d9c +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022d9c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022d9c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f60 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9c 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9c mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9d +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9d +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9d 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9d mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9e +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9e +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9e 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9e mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022d9f +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022d9f +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022d9f 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022d9f mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da0 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da1 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da2 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da3 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da4 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da5 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da6 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022d9c mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022d9c mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f60 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022da7 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003050 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003058 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f68 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022da7 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f68 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003058 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022da7 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003058 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022da7 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022da7 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022da7 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022da7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022da7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f68 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da7 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da8 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022da9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022da9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022da9 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022da9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022daa +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022daa +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daa 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daa mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dab +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dab +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dab 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dab mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dac +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dac +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dac 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dac mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dad +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dad +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dad 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dad mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dae +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dae +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dae 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dae mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022daf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022daf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022daf 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022daf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db0 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db1 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022da7 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022da7 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f68 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022db2 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003058 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003060 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f70 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022db2 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f70 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003060 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022db2 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003060 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022db2 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022db2 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022db2 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022db2 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022db2 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f70 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db2 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db3 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db4 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db5 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db6 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db7 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db8 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022db9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022db9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022db9 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022db9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dba +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dba +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dba 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dba mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbb 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbc 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022db2 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022db2 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f70 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dbd 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003060 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003068 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f78 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022dbd +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f78 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003068 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022dbd +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003068 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022dbd +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dbd +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dbd +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dbd +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dbd +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f78 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbd 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbe +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbe +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbe 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbe mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dbf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dbf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dbf 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dbf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc0 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc1 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc2 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc3 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc4 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc5 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc6 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc7 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dbd mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dbd mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f78 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dc8 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003068 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003070 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f80 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022dc8 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f80 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003070 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022dc8 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003070 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022dc8 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dc8 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dc8 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dc8 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dc8 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f80 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc8 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dc9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dc9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dc9 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dc9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dca +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dca +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dca 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dca mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dcb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dcb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcb 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dcc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dcc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcc 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dcd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dcd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcd 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dce +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dce +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dce 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dce mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dcf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dcf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dcf 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dcf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd0 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd1 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd2 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dc8 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dc8 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f80 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dd3 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003070 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003078 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f88 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022dd3 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f88 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003078 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022dd3 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003078 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022dd3 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dd3 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dd3 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dd3 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dd3 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f88 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd3 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd4 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd5 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd6 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd7 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd8 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dd9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dd9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dd9 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dd9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dda +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dda +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dda 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dda mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ddb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ddb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddb 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ddc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ddc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddc 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ddd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ddd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddd 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dde +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dde +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dd3 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dd3 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f88 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dde mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dde 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dde mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003078 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003080 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f90 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022dde +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f90 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003080 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022dde +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003080 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022dde +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dde +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dde +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dde +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dde +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f90 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dde 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dde mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ddf +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ddf +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ddf 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ddf mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de0 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de1 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de2 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de3 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de4 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de5 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de6 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de7 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de8 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022de9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022de9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dde mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dde mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f90 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022de9 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003080 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003088 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002f98 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022de9 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002f98 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003088 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022de9 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003088 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022de9 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022de9 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022de9 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022de9 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022de9 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002f98 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022de9 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022de9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dea +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dea +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dea 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dea mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022deb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022deb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022deb 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022deb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dec +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dec +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dec 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dec mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022ded +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022ded +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022ded 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022ded mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dee +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dee +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dee 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dee mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022def +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022def +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022def mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022def 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022def mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df0 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df0 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df0 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df0 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df1 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df1 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df1 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df1 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df2 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df2 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df2 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df2 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df3 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df3 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df3 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df3 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df4 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df4 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022de9 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022de9 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002f98 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022df4 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003088 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003090 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002fa0 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022df4 +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fa0 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003090 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022df4 +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003090 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022df4 +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022df4 +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022df4 +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022df4 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022df4 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002fa0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df4 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df4 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df5 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df5 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df5 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df5 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df6 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df6 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df6 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df6 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df7 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df7 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df7 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df7 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df8 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df8 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df8 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df8 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022df9 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022df9 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022df9 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022df9 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfa +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfa +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfa 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfa mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfb +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfb +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfb 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfb mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfc +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfc +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfc 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfc mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfd +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfd +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfd 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfd mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dfe +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dfe +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dfe 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dfe mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022dff +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022dff +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022df4 mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022df4 mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa0 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022dff mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022dff 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022dff mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003090 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x0000000080003098 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002fa8 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022dff +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001cf4 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf4 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002fa8 +core 0: 0x0000000080001cf8 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf8 (0x00043603) x12 0x0000000000000000 mem 0x0000000080003098 +core 0: 0x0000000080001cfc (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cfc (0x00048513) x10 0x0000000080022dff +core 0: 0x0000000080001d00 (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001d00 (0x00001597) x11 0x0000000080002d00 +core 0: 0x0000000080001d04 (0xdb058593) addi a1, a1, -592 +core 0: 3 0x0000000080001d04 (0xdb058593) x11 0x0000000080002ab0 +core 0: 0x0000000080001d08 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d08 (0xd35ff0ef) x1 0x0000000080001d0c +core 0: >>>> sprintf +core 0: 0x0000000080001a3c (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a3c (0xfa010113) x2 0x0000000080022c30 +core 0: 0x0000000080001a40 (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a40 (0x03010313) x6 0x0000000080022c60 +core 0: 0x0000000080001a44 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a44 (0x02813023) mem 0x0000000080022c50 0x0000000080003098 +core 0: 0x0000000080001a48 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a48 (0x00a13423) mem 0x0000000080022c38 0x0000000080022dff +core 0: 0x0000000080001a4c (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a4c (0x02c13823) mem 0x0000000080022c60 0x0000000000000000 +core 0: 0x0000000080001a50 (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a50 (0x02d13c23) mem 0x0000000080022c68 0x0000000000000000 +core 0: 0x0000000080001a54 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a54 (0x00050413) x8 0x0000000080022dff +core 0: 0x0000000080001a58 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a58 (0x00058613) x12 0x0000000080002ab0 +core 0: 0x0000000080001a5c (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a5c (0x00000517) x10 0x0000000080001a5c +core 0: 0x0000000080001a60 (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a60 (0x98050513) x10 0x00000000800013dc +core 0: 0x0000000080001a64 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a64 (0x00810593) x11 0x0000000080022c38 +core 0: 0x0000000080001a68 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a68 (0x00030693) x13 0x0000000080022c60 +core 0: 0x0000000080001a6c (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a6c (0x02113423) mem 0x0000000080022c58 0x0000000080001d0c +core 0: 0x0000000080001a70 (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a70 (0x04f13423) mem 0x0000000080022c78 0x0000000080022dff +core 0: 0x0000000080001a74 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a74 (0x04e13023) mem 0x0000000080022c70 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a78 (0x05013823) mem 0x0000000080022c80 0x0000000080002ac0 +core 0: 0x0000000080001a7c (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a7c (0x05113c23) mem 0x0000000080022c88 0x0000000000000000 +core 0: 0x0000000080001a80 (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a80 (0x00613c23) mem 0x0000000080022c48 0x0000000080022c60 +core 0: 0x0000000080001a84 (0xd7cff0ef) jal pc - 0xa84 +core 0: 3 0x0000000080001a84 (0xd7cff0ef) x1 0x0000000080001a88 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x0000000080022ad0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022c20 0x0000000080022dff +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022c18 0x0000000080022dff +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022c10 0x0000000080002fa8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022c00 0x0000000080022cc0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x0000000080022bf8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x0000000080022bf0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x0000000080022be8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022c28 0x0000000080001a88 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022c08 0x00000000800030a0 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x0000000080022be0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x0000000080022bd8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x0000000080022bd0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013dc +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002ab0 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022c60 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022c38 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0x00001a97) auipc s5, 0x1 +core 0: 3 0x000000008000104c (0x00001a97) x21 0x000000008000204c +core 0: 0x0000000080001050 (0x684a8a93) addi s5, s5, 1668 +core 0: 3 0x0000000080001050 (0x684a8a93) x21 0x00000000800026d0 +core 0: 0x0000000080001054 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001054 (0x0140006f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab0 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000073 mem 0x0000000080002ab1 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab1 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab1 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab2 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002810 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffebd0 mem 0x0000000080002810 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x00000000800012a0 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x00000000800012a0 (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x00000000800012a0 (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022c60 +core 0: 0x00000000800012a4 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a4 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a8 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a8 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012ac (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012ac (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012b0 (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012b0 (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b4 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b8 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b8 (0x008b8b93) x23 0x0000000080022c68 +core 0: 0x00000000800012bc (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012bc (0x0a0c0c63) +core 0: 0x0000000080001374 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001374 (0x00001c17) x24 0x0000000080002374 +core 0: 0x0000000080001378 (0x4b4c0c13) addi s8, s8, 1204 +core 0: 3 0x0000000080001378 (0x4b4c0c13) x24 0x0000000080002828 +core 0: 0x000000008000137c (0x02800513) li a0, 40 +core 0: 3 0x000000008000137c (0x02800513) x10 0x0000000000000028 +core 0: 0x0000000080001380 (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x0000000080001380 (0xf40706e3) +core 0: 0x00000000800012cc (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012cc (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022dff 0x28 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022dff mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e00 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e00 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002829 +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x0000000080002829 +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e00 0x6e +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e00 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e01 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e01 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000075 mem 0x000000008000282a +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282a +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e01 0x75 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e01 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e02 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e02 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282b +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282b +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e02 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e02 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e03 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e03 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x000000000000006c mem 0x000000008000282c +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282c +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e03 0x6c +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e03 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e04 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e04 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000029 mem 0x000000008000282d +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282d +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012d0 (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012d0 (0x0009c663) +core 0: 0x00000000800012dc (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012dc (0x00090593) x11 0x0000000080022c38 +core 0: 0x00000000800012e0 (0x000480e7) jalr s1 +core 0: 3 0x00000000800012e0 (0x000480e7) x1 0x00000000800012e4 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e04 0x29 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e04 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e05 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e05 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x00000000800012e4 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e4 (0x001c4503) x10 0x0000000000000000 mem 0x000000008000282e +core 0: 0x00000000800012e8 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e8 (0x001c0c13) x24 0x000000008000282e +core 0: 0x00000000800012ec (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012ec (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012f0 (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012f0 (0xfe0510e3) +core 0: 0x00000000800012f4 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f4 (0xd7905ae3) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab2 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab3 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e05 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e05 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e06 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e06 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000003d mem 0x0000000080002ab3 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab4 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e06 0x3d +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e06 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e07 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e07 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002ab4 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab5 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e07 0x20 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e07 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e08 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e08 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002ab5 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001070 (0x00144683) lbu a3, 1(s0) +core 0: 3 0x0000000080001070 (0x00144683) x13 0x0000000000000075 mem 0x0000000080002ab6 +core 0: 0x0000000080001074 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001074 (0x00140c13) x24 0x0000000080002ab6 +core 0: 0x0000000080001078 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001078 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x000000008000107c (0x000c0713) mv a4, s8 +core 0: 3 0x000000008000107c (0x000c0713) x14 0x0000000080002ab6 +core 0: 0x0000000080001080 (0x00098c93) mv s9, s3 +core 0: 3 0x0000000080001080 (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001084 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001084 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001088 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001088 (0x00000613) x12 0x0000000000000000 +core 0: 0x000000008000108c (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x000000008000108c (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x0000000080001090 (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001094 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001094 (0x00170413) x8 0x0000000080002ab7 +core 0: 0x0000000080001098 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001098 (0x06fb6463) +core 0: 0x000000008000109c (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x000000008000109c (0x2157c7b3) x15 0x0000000080002818 +core 0: 0x00000000800010a0 (0x0007a783) lw a5, 0(a5) +core 0: 3 0x00000000800010a0 (0x0007a783) x15 0xffffffffffffec78 mem 0x0000000080002818 +core 0: 0x00000000800010a4 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a4 (0x015787b3) x15 0x0000000080001348 +core 0: 0x00000000800010a8 (0x00078067) jr a5 +core 0: 3 0x00000000800010a8 (0x00078067) +core 0: 0x0000000080001348 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001348 (0x00a00693) x13 0x000000000000000a +core 0: 0x000000008000134c (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x000000008000134c (0xf39ff06f) +core 0: 0x0000000080001284 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001284 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001288 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001288 (0x008b8793) x15 0x0000000080022c70 +core 0: 0x000000008000128c (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x000000008000128c (0xf2c746e3) +core 0: 0x0000000080001290 (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x0000000080001290 (0xf20614e3) +core 0: 0x0000000080001294 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001294 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022c68 +core 0: 0x0000000080001298 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001298 (0x00078b93) x23 0x0000000080022c70 +core 0: 0x000000008000129c (0xf25ff06f) j pc - 0xdc +core 0: 3 0x000000008000129c (0xf25ff06f) +core 0: 0x00000000800011c0 (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011c0 (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c4 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c4 (0x00410613) x12 0x0000000080022ad4 +core 0: 0x00000000800011c8 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c8 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011cc (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011cc (0x00b12023) mem 0x0000000080022ad0 0x00000000 +core 0: 0x00000000800011d0 (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011d0 (0x16d76463) +core 0: 0x0000000080001338 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001338 (0x00000c13) x24 0x0000000000000000 +core 0: 0x000000008000133c (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x000000008000133c (0xeb5ff06f) +core 0: 0x00000000800011f0 (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011f0 (0x0397d263) +core 0: 0x0000000080001214 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001214 (0x202c49b3) x19 0x0000000080022ad0 +core 0: 0x0000000080001218 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001218 (0xffc10c93) x25 0x0000000080022acc +core 0: 0x000000008000121c (0x00900c13) li s8, 9 +core 0: 3 0x000000008000121c (0x00900c13) x24 0x0000000000000009 +core 0: 0x0000000080001220 (0x0009a783) lw a5, 0(s3) +core 0: 3 0x0000000080001220 (0x0009a783) x15 0x0000000000000000 mem 0x0000000080022ad0 +core 0: 0x0000000080001224 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001224 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001228 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001228 (0x00fc7463) +core 0: 0x0000000080001230 (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x0000000080001230 (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001234 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001234 (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001238 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001238 (0xffc98993) x19 0x0000000080022acc +core 0: 0x000000008000123c (0x000480e7) jalr s1 +core 0: 3 0x000000008000123c (0x000480e7) x1 0x0000000080001240 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e08 0x30 +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e08 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e09 +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e09 +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001240 (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x0000000080001240 (0xff9990e3) +core 0: 0x0000000080001244 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001244 (0xe25ff06f) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x000000000000000a mem 0x0000000080002ab7 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x000000008000105c (0x00090593) mv a1, s2 +core 0: 3 0x000000008000105c (0x00090593) x11 0x0000000080022c38 +core 0: 0x0000000080001060 (0x00140413) addi s0, s0, 1 +core 0: 3 0x0000000080001060 (0x00140413) x8 0x0000000080002ab8 +core 0: 0x0000000080001064 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001064 (0x000480e7) x1 0x0000000080001068 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013dc (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013dc (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022c38 +core 0: 0x00000000800013e0 (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013e0 (0x00a78023) mem 0x0000000080022e09 0x0a +core 0: 0x00000000800013e4 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e4 (0x0005b783) x15 0x0000000080022e09 mem 0x0000000080022c38 +core 0: 0x00000000800013e8 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e8 (0x00178793) x15 0x0000000080022e0a +core 0: 0x00000000800013ec (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013ec (0x00f5b023) mem 0x0000000080022c38 0x0000000080022e0a +core 0: 0x00000000800013f0 (0x00008067) ret +core 0: 3 0x00000000800013f0 (0x00008067) +core 0: 0x0000000080001068 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001068 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x000000008000106c (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x000000008000106c (0xff4516e3) +core 0: 0x0000000080001058 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001058 (0x04050a63) +core 0: 0x00000000800010ac (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010ac (0x15813083) x1 0x0000000080001a88 mem 0x0000000080022c28 +core 0: 0x00000000800010b0 (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010b0 (0x15013403) x8 0x0000000080022dff mem 0x0000000080022c20 +core 0: 0x00000000800010b4 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b4 (0x14813483) x9 0x0000000080022dff mem 0x0000000080022c18 +core 0: 0x00000000800010b8 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b8 (0x14013903) x18 0x0000000080002fa8 mem 0x0000000080022c10 +core 0: 0x00000000800010bc (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010bc (0x13813983) x19 0x00000000800030a0 mem 0x0000000080022c08 +core 0: 0x00000000800010c0 (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010c0 (0x13013a03) x20 0x0000000080022cc0 mem 0x0000000080022c00 +core 0: 0x00000000800010c4 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c4 (0x12813a83) x21 0x0000000000000000 mem 0x0000000080022bf8 +core 0: 0x00000000800010c8 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c8 (0x12013b03) x22 0x0000000000000000 mem 0x0000000080022bf0 +core 0: 0x00000000800010cc (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010cc (0x11813b83) x23 0x0000000000000000 mem 0x0000000080022be8 +core 0: 0x00000000800010d0 (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010d0 (0x11013c03) x24 0x0000000000000000 mem 0x0000000080022be0 +core 0: 0x00000000800010d4 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d4 (0x10813c83) x25 0x0000000000000000 mem 0x0000000080022bd8 +core 0: 0x00000000800010d8 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d8 (0x10013d03) x26 0x0000000000000000 mem 0x0000000080022bd0 +core 0: 0x00000000800010dc (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010dc (0x16010113) x2 0x0000000080022c30 +core 0: 0x00000000800010e0 (0x00008067) ret +core 0: 3 0x00000000800010e0 (0x00008067) +core 0: 0x0000000080001a88 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a88 (0x00813783) x15 0x0000000080022e0a mem 0x0000000080022c38 +core 0: 0x0000000080001a8c (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a8c (0x00078023) mem 0x0000000080022e0a 0x00 +core 0: 0x0000000080001a90 (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a90 (0x00813503) x10 0x0000000080022e0a mem 0x0000000080022c38 +core 0: 0x0000000080001a94 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a94 (0x02813083) x1 0x0000000080001d0c mem 0x0000000080022c58 +core 0: 0x0000000080001a98 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a98 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a9c (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a9c (0x02013403) x8 0x0000000080003098 mem 0x0000000080022c50 +core 0: 0x0000000080001aa0 (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001aa0 (0x06010113) x2 0x0000000080022c90 +core 0: 0x0000000080001aa4 (0x00008067) ret +core 0: 3 0x0000000080001aa4 (0x00008067) +core 0: 0x0000000080001d0c (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d0c (0x00840413) x8 0x00000000800030a0 +core 0: 0x0000000080001d10 (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d10 (0x00890913) x18 0x0000000080002fb0 +core 0: 0x0000000080001d14 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d14 (0x00a484b3) x9 0x0000000080022e0a +core 0: 0x0000000080001d18 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d18 (0xfd341ee3) +core 0: 0x0000000080001d1c (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d1c (0x009a0663) +core 0: 0x0000000080001d20 (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d20 (0x000a0513) x10 0x0000000080022cc0 +core 0: 0x0000000080001d24 (0xbf1ff0ef) jal pc - 0x410 +core 0: 3 0x0000000080001d24 (0xbf1ff0ef) x1 0x0000000080001d28 +core 0: >>>> printstr +core 0: 0x0000000080001914 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x0000000080001914 (0x00054783) x15 0x0000000000000028 mem 0x0000000080022cc0 +core 0: 0x0000000080001918 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001918 (0xf9010113) x2 0x0000000080022c20 +core 0: 0x000000008000191c (0x03f10693) addi a3, sp, 63 +core 0: 3 0x000000008000191c (0x03f10693) x13 0x0000000080022c5f +core 0: 0x0000000080001920 (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x0000000080001920 (0xfc06f693) x13 0x0000000080022c40 +core 0: 0x0000000080001924 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001924 (0x00078c63) +core 0: 0x0000000080001928 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001928 (0x00050793) x15 0x0000000080022cc0 +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022cc1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022cc2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cc3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cc4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cc5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cc6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cc7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cc8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cc9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cc9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022cca +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cca +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ccb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ccb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ccc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ccc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ccd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ccd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cce +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cce +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ccf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ccf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cd0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cd1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cd2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cd3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cd4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022cd5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022cd6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022cd7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022cd8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cd9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cd9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cda +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cda +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cdb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cdb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cdc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cdc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cdd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cdd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cde +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cde +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cdf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cdf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ce0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022ce1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ce2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022ce3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ce4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ce5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022ce6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ce7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022ce8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ce9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ce9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cea +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cea +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ceb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ceb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022cec +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cec +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ced +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ced +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022cee +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cee +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cef +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cef +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cf0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cf1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cf2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cf3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cf4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022cf5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022cf6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022cf7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022cf8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022cf9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cf9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cfa +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfa +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022cfb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022cfc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cfd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022cfe +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cfe +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022cff +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022cff +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d00 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d00 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d01 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d01 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d02 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d02 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d03 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d03 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d04 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d04 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d05 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d05 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d06 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d06 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d07 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d07 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d08 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d08 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d09 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d09 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d0a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d0b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d0c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d0d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d0e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d0f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d0f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d10 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d10 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d11 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d11 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d12 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d12 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d13 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d13 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d14 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d14 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d15 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d15 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d16 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d16 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d17 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d17 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d18 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d18 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d19 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d19 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d1a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d1b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d1c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d1d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d1e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d1f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d1f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d20 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d20 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d21 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d21 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d22 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d22 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d23 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d23 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d24 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d24 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d25 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d25 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d26 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d26 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d27 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d27 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d28 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d28 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d29 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d29 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d2a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d2b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d2c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d2d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d2e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d2f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d2f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d30 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d30 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d31 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d31 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d32 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d32 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d33 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d33 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d34 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d34 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d35 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d35 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d36 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d36 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d37 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d37 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d38 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d38 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d39 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d39 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d3a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d3b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d3c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d3d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d3e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d3f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d3f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d40 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d40 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d41 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d41 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d42 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d42 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d43 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d43 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d44 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d44 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d45 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d45 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d46 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d46 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d47 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d47 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d48 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d48 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d49 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d49 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d4a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d4b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d4c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d4d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d4e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d4f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d4f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d50 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d50 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d51 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d51 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d52 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d52 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d53 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d53 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d54 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d54 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d55 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d55 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d56 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d56 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d57 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d57 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d58 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d58 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d59 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d59 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d5a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d5b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d5c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d5d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d5e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d5f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d5f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d60 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d60 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d61 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d61 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d62 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d62 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d63 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d63 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d64 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d64 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d65 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d65 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d66 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d66 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d67 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d67 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d68 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d68 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d69 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d69 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d6a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d6b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d6c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d6d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d6e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d6f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d6f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d70 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d70 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d71 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d71 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d72 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d72 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d73 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d73 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d74 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d74 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d75 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d75 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d76 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d76 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d77 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d77 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d78 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d78 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d79 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d79 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d7a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d7b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d7c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d7d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d7e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d7f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d7f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d80 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d80 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d81 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d81 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d82 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d82 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d83 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d83 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d84 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d84 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d85 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d85 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d86 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d86 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d87 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d87 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d88 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d88 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d89 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d89 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d8a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d8b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d8c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d8d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d8e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d8f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d8f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d90 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d90 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d91 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d91 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d92 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d92 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d93 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d93 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d94 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d94 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d95 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d95 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022d96 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d96 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d97 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d97 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022d98 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d98 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022d99 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d99 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022d9a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022d9b +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9b +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022d9c +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9c +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022d9d +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9d +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022d9e +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9e +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022d9f +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022d9f +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022da0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022da1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022da2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022da3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022da4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022da5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022da6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022da7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022da8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022da9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022da9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022daa +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022daa +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dab +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dab +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dac +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dac +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dad +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dad +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dae +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dae +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022daf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022daf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022db0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022db1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022db2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022db3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022db4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022db5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022db6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022db7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022db8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022db9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022db9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dba +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dba +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dbb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dbc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dbd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dbe +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbe +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dbf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dbf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dc0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dc1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dc2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dc3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dc4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dc5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dc6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dc7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dc8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dc9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dc9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dca +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dca +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dcb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dcb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dcc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dcc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dcd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dcd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dce +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dce +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dcf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dcf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dd0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dd1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dd2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dd3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dd4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022dd5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dd6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dd7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dd8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dd9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dd9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dda +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dda +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022ddb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ddb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022ddc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ddc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022ddd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ddd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dde +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dde +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022ddf +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ddf +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022de0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022de1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022de2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022de3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022de4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022de5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022de6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022de7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022de8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022de9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022de9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022dea +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dea +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022deb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022deb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022dec +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dec +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022ded +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022ded +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022dee +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dee +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022def +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022def +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022df0 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df0 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022df1 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df1 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022df2 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df2 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022df3 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df3 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022df4 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df4 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022df5 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df5 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022df6 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df6 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022df7 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df7 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022df8 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df8 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022df9 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022df9 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dfa +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfa +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022dfb +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfb +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022dfc +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfc +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022dfd +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfd +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022dfe +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dfe +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022dff +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022dff +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006e mem 0x0000000080022e00 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e00 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022e01 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e01 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e02 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e02 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000006c mem 0x0000000080022e03 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e03 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022e04 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e04 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e05 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e05 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000003d mem 0x0000000080022e06 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e06 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022e07 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e07 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022e08 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e08 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x000000000000000a mem 0x0000000080022e09 +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e09 +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x000000008000192c (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x000000008000192c (0x0017c703) x14 0x0000000000000000 mem 0x0000000080022e0a +core 0: 0x0000000080001930 (0x00178793) addi a5, a5, 1 +core 0: 3 0x0000000080001930 (0x00178793) x15 0x0000000080022e0a +core 0: 0x0000000080001934 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001934 (0xfe071ce3) +core 0: 0x0000000080001938 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x0000000080001938 (0x40a787b3) x15 0x000000000000014a +core 0: 0x000000008000193c (0x04000713) li a4, 64 +core 0: 3 0x000000008000193c (0x04000713) x14 0x0000000000000040 +core 0: 0x0000000080001940 (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x0000000080001940 (0x00e6b023) mem 0x0000000080022c40 0x0000000000000040 +core 0: 0x0000000080001944 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001944 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001948 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x0000000080001948 (0x00e6b423) mem 0x0000000080022c48 0x0000000000000001 +core 0: 0x000000008000194c (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x000000008000194c (0x00a6b823) mem 0x0000000080022c50 0x0000000080022cc0 +core 0: 0x0000000080001950 (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x0000000080001950 (0x00f6bc23) mem 0x0000000080022c58 0x000000000000014a +core 0: 0x0000000080001954 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001954 (0x0330000f) +core 0: 0x0000000080001958 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001958 (0xbfffe717) x14 0x000000003ffff958 +core 0: 0x000000008000195c (0x6e870713) addi a4, a4, 1768 +core 0: 3 0x000000008000195c (0x6e870713) x14 0x0000000040000040 +core 0: 0x0000000080001960 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x0000000080001960 (0xbfffe797) x15 0x000000003ffff960 +core 0: 0x0000000080001964 (0x6ad7b023) sd a3, 1696(a5) +core 0: 3 0x0000000080001964 (0x6ad7b023) mem 0x0000000040000000 0x0000000080022c40 +core 0: 0x0000000080001968 (0x00073783) ld a5, 0(a4) +core 0: 3 0x0000000080001968 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x000000008000196c (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x000000008000196c (0xfe078ee3) +core 0: 0x0000000080001970 (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x0000000080001970 (0xbfffe797) x15 0x000000003ffff970 +core 0: 0x0000000080001974 (0x6c07b823) sd zero, 1744(a5) +core 0: 3 0x0000000080001974 (0x6c07b823) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x0000000080001978 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001978 (0x0330000f) +core 0: 0x000000008000197c (0x0006b783) ld a5, 0(a3) +core 0: 3 0x000000008000197c (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022c40 +core 0: 0x0000000080001980 (0x07010113) addi sp, sp, 112 +core 0: 3 0x0000000080001980 (0x07010113) x2 0x0000000080022c90 +core 0: 0x0000000080001984 (0x00008067) ret +core 0: 3 0x0000000080001984 (0x00008067) +core 0: 0x0000000080001d28 (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d28 (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d2c (0xba5ff0ef) jal pc - 0x45c +core 0: 3 0x0000000080001d2c (0xba5ff0ef) x1 0x0000000080001d30 +core 0: >>>> tohost_exit +core 0: 0x00000000800018d0 (0x00151793) slli a5, a0, 1 +core 0: 3 0x00000000800018d0 (0x00151793) x15 0x0000000000000000 +core 0: 0x00000000800018d4 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x00000000800018d4 (0x0017e793) x15 0x0000000000000001 +core 0: 0x00000000800018d8 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x00000000800018d8 (0xbfffe717) x14 0x000000003ffff8d8 +core 0: 0x00000000800018dc (0x72f73423) sd a5, 1832(a4) +core 0: 3 0x00000000800018dc (0x72f73423) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x00000000800018e0 (0x0000006f) j pc + 0x0 +core 0: 3 0x00000000800018e0 (0x0000006f) diff --git a/traces/without_zfa.txt b/traces/without_zfa.txt new file mode 100644 index 0000000..0bd6e35 --- /dev/null +++ b/traces/without_zfa.txt @@ -0,0 +1,23123 @@ +core 0: 0x0000000000000100 (0x0010041b) addiw s0, zero, 1 +core 0: 3 0x0000000000000100 (0x0010041b) x8 0x0000000000000001 +core 0: 0x0000000000000104 (0x01f41413) slli s0, s0, 31 +core 0: 3 0x0000000000000104 (0x01f41413) x8 0x0000000080000000 +core 0: 0x0000000000000108 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000000000108 (0xf1402573) x10 0x0000000000000000 +core 0: 0x000000000000010c (0x18000593) li a1, 384 +core 0: 3 0x000000000000010c (0x18000593) x11 0x0000000000000180 +core 0: 0x0000000000000110 (0x00040067) jr s0 +core 0: 3 0x0000000000000110 (0x00040067) +core 0: >>>> _start +core 0: 0x0000000080000000 (0x00000093) li ra, 0 +core 0: 3 0x0000000080000000 (0x00000093) x1 0x0000000000000000 +core 0: 0x0000000080000004 (0x00000113) li sp, 0 +core 0: 3 0x0000000080000004 (0x00000113) x2 0x0000000000000000 +core 0: 0x0000000080000008 (0x00000193) li gp, 0 +core 0: 3 0x0000000080000008 (0x00000193) x3 0x0000000000000000 +core 0: 0x000000008000000c (0x00000213) li tp, 0 +core 0: 3 0x000000008000000c (0x00000213) x4 0x0000000000000000 +core 0: 0x0000000080000010 (0x00000293) li t0, 0 +core 0: 3 0x0000000080000010 (0x00000293) x5 0x0000000000000000 +core 0: 0x0000000080000014 (0x00000313) li t1, 0 +core 0: 3 0x0000000080000014 (0x00000313) x6 0x0000000000000000 +core 0: 0x0000000080000018 (0x00000393) li t2, 0 +core 0: 3 0x0000000080000018 (0x00000393) x7 0x0000000000000000 +core 0: 0x000000008000001c (0x00000413) li s0, 0 +core 0: 3 0x000000008000001c (0x00000413) x8 0x0000000000000000 +core 0: 0x0000000080000020 (0x00000493) li s1, 0 +core 0: 3 0x0000000080000020 (0x00000493) x9 0x0000000000000000 +core 0: 0x0000000080000024 (0x00000513) li a0, 0 +core 0: 3 0x0000000080000024 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080000028 (0x00000593) li a1, 0 +core 0: 3 0x0000000080000028 (0x00000593) x11 0x0000000000000000 +core 0: 0x000000008000002c (0x00000613) li a2, 0 +core 0: 3 0x000000008000002c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080000030 (0x00000693) li a3, 0 +core 0: 3 0x0000000080000030 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080000034 (0x00000713) li a4, 0 +core 0: 3 0x0000000080000034 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080000038 (0x00000793) li a5, 0 +core 0: 3 0x0000000080000038 (0x00000793) x15 0x0000000000000000 +core 0: 0x000000008000003c (0x00000813) li a6, 0 +core 0: 3 0x000000008000003c (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080000040 (0x00000893) li a7, 0 +core 0: 3 0x0000000080000040 (0x00000893) x17 0x0000000000000000 +core 0: 0x0000000080000044 (0x00000913) li s2, 0 +core 0: 3 0x0000000080000044 (0x00000913) x18 0x0000000000000000 +core 0: 0x0000000080000048 (0x00000993) li s3, 0 +core 0: 3 0x0000000080000048 (0x00000993) x19 0x0000000000000000 +core 0: 0x000000008000004c (0x00000a13) li s4, 0 +core 0: 3 0x000000008000004c (0x00000a13) x20 0x0000000000000000 +core 0: 0x0000000080000050 (0x00000a93) li s5, 0 +core 0: 3 0x0000000080000050 (0x00000a93) x21 0x0000000000000000 +core 0: 0x0000000080000054 (0x00000b13) li s6, 0 +core 0: 3 0x0000000080000054 (0x00000b13) x22 0x0000000000000000 +core 0: 0x0000000080000058 (0x00000b93) li s7, 0 +core 0: 3 0x0000000080000058 (0x00000b93) x23 0x0000000000000000 +core 0: 0x000000008000005c (0x00000c13) li s8, 0 +core 0: 3 0x000000008000005c (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080000060 (0x00000c93) li s9, 0 +core 0: 3 0x0000000080000060 (0x00000c93) x25 0x0000000000000000 +core 0: 0x0000000080000064 (0x00000d13) li s10, 0 +core 0: 3 0x0000000080000064 (0x00000d13) x26 0x0000000000000000 +core 0: 0x0000000080000068 (0x00000d93) li s11, 0 +core 0: 3 0x0000000080000068 (0x00000d93) x27 0x0000000000000000 +core 0: 0x000000008000006c (0x00000e13) li t3, 0 +core 0: 3 0x000000008000006c (0x00000e13) x28 0x0000000000000000 +core 0: 0x0000000080000070 (0x00000e93) li t4, 0 +core 0: 3 0x0000000080000070 (0x00000e93) x29 0x0000000000000000 +core 0: 0x0000000080000074 (0x00000f13) li t5, 0 +core 0: 3 0x0000000080000074 (0x00000f13) x30 0x0000000000000000 +core 0: 0x0000000080000078 (0x00000f93) li t6, 0 +core 0: 3 0x0000000080000078 (0x00000f93) x31 0x0000000000000000 +core 0: 0x000000008000007c (0x0001e2b7) lui t0, 0x1e +core 0: 3 0x000000008000007c (0x0001e2b7) x5 0x000000000001e000 +core 0: 0x0000000080000080 (0x6002829b) addiw t0, t0, 1536 +core 0: 3 0x0000000080000080 (0x6002829b) x5 0x000000000001e600 +core 0: 0x0000000080000084 (0x3002a073) csrs mstatus, t0 +core 0: 3 0x0000000080000084 (0x3002a073) c768_mstatus 0x8000000a00006000 +core 0: 0x0000000080000088 (0x00100293) li t0, 1 +core 0: 3 0x0000000080000088 (0x00100293) x5 0x0000000000000001 +core 0: 0x000000008000008c (0x01f29293) slli t0, t0, 31 +core 0: 3 0x000000008000008c (0x01f29293) x5 0x0000000080000000 +core 0: 0x0000000080000090 (0x0002da63) bgez t0, pc + 20 +core 0: 3 0x0000000080000090 (0x0002da63) +core 0: 0x00000000800000a4 (0x00000297) auipc t0, 0x0 +core 0: 3 0x00000000800000a4 (0x00000297) x5 0x00000000800000a4 +core 0: 0x00000000800000a8 (0x09028293) addi t0, t0, 144 +core 0: 3 0x00000000800000a8 (0x09028293) x5 0x0000000080000134 +core 0: 0x00000000800000ac (0x30529073) csrw mtvec, t0 +core 0: 3 0x00000000800000ac (0x30529073) c773_mtvec 0x0000000080000134 +core 0: 0x00000000800000b0 (0x00301073) csrw fcsr, zero +core 0: 3 0x00000000800000b0 (0x00301073) c1_fflags 0x0000000000000000 c2_frm 0x0000000000000000 +core 0: 0x00000000800000b4 (0xf0000053) fmv.w.x ft0, zero +core 0: 3 0x00000000800000b4 (0xf0000053) f0 0xffffffff00000000 +core 0: 0x00000000800000b8 (0xf00000d3) fmv.w.x ft1, zero +core 0: 3 0x00000000800000b8 (0xf00000d3) f1 0xffffffff00000000 +core 0: 0x00000000800000bc (0xf0000153) fmv.w.x ft2, zero +core 0: 3 0x00000000800000bc (0xf0000153) f2 0xffffffff00000000 +core 0: 0x00000000800000c0 (0xf00001d3) fmv.w.x ft3, zero +core 0: 3 0x00000000800000c0 (0xf00001d3) f3 0xffffffff00000000 +core 0: 0x00000000800000c4 (0xf0000253) fmv.w.x ft4, zero +core 0: 3 0x00000000800000c4 (0xf0000253) f4 0xffffffff00000000 +core 0: 0x00000000800000c8 (0xf00002d3) fmv.w.x ft5, zero +core 0: 3 0x00000000800000c8 (0xf00002d3) f5 0xffffffff00000000 +core 0: 0x00000000800000cc (0xf0000353) fmv.w.x ft6, zero +core 0: 3 0x00000000800000cc (0xf0000353) f6 0xffffffff00000000 +core 0: 0x00000000800000d0 (0xf00003d3) fmv.w.x ft7, zero +core 0: 3 0x00000000800000d0 (0xf00003d3) f7 0xffffffff00000000 +core 0: 0x00000000800000d4 (0xf0000453) fmv.w.x fs0, zero +core 0: 3 0x00000000800000d4 (0xf0000453) f8 0xffffffff00000000 +core 0: 0x00000000800000d8 (0xf00004d3) fmv.w.x fs1, zero +core 0: 3 0x00000000800000d8 (0xf00004d3) f9 0xffffffff00000000 +core 0: 0x00000000800000dc (0xf0000553) fmv.w.x fa0, zero +core 0: 3 0x00000000800000dc (0xf0000553) f10 0xffffffff00000000 +core 0: 0x00000000800000e0 (0xf00005d3) fmv.w.x fa1, zero +core 0: 3 0x00000000800000e0 (0xf00005d3) f11 0xffffffff00000000 +core 0: 0x00000000800000e4 (0xf0000653) fmv.w.x fa2, zero +core 0: 3 0x00000000800000e4 (0xf0000653) f12 0xffffffff00000000 +core 0: 0x00000000800000e8 (0xf00006d3) fmv.w.x fa3, zero +core 0: 3 0x00000000800000e8 (0xf00006d3) f13 0xffffffff00000000 +core 0: 0x00000000800000ec (0xf0000753) fmv.w.x fa4, zero +core 0: 3 0x00000000800000ec (0xf0000753) f14 0xffffffff00000000 +core 0: 0x00000000800000f0 (0xf00007d3) fmv.w.x fa5, zero +core 0: 3 0x00000000800000f0 (0xf00007d3) f15 0xffffffff00000000 +core 0: 0x00000000800000f4 (0xf0000853) fmv.w.x fa6, zero +core 0: 3 0x00000000800000f4 (0xf0000853) f16 0xffffffff00000000 +core 0: 0x00000000800000f8 (0xf00008d3) fmv.w.x fa7, zero +core 0: 3 0x00000000800000f8 (0xf00008d3) f17 0xffffffff00000000 +core 0: 0x00000000800000fc (0xf0000953) fmv.w.x fs2, zero +core 0: 3 0x00000000800000fc (0xf0000953) f18 0xffffffff00000000 +core 0: 0x0000000080000100 (0xf00009d3) fmv.w.x fs3, zero +core 0: 3 0x0000000080000100 (0xf00009d3) f19 0xffffffff00000000 +core 0: 0x0000000080000104 (0xf0000a53) fmv.w.x fs4, zero +core 0: 3 0x0000000080000104 (0xf0000a53) f20 0xffffffff00000000 +core 0: 0x0000000080000108 (0xf0000ad3) fmv.w.x fs5, zero +core 0: 3 0x0000000080000108 (0xf0000ad3) f21 0xffffffff00000000 +core 0: 0x000000008000010c (0xf0000b53) fmv.w.x fs6, zero +core 0: 3 0x000000008000010c (0xf0000b53) f22 0xffffffff00000000 +core 0: 0x0000000080000110 (0xf0000bd3) fmv.w.x fs7, zero +core 0: 3 0x0000000080000110 (0xf0000bd3) f23 0xffffffff00000000 +core 0: 0x0000000080000114 (0xf0000c53) fmv.w.x fs8, zero +core 0: 3 0x0000000080000114 (0xf0000c53) f24 0xffffffff00000000 +core 0: 0x0000000080000118 (0xf0000cd3) fmv.w.x fs9, zero +core 0: 3 0x0000000080000118 (0xf0000cd3) f25 0xffffffff00000000 +core 0: 0x000000008000011c (0xf0000d53) fmv.w.x fs10, zero +core 0: 3 0x000000008000011c (0xf0000d53) f26 0xffffffff00000000 +core 0: 0x0000000080000120 (0xf0000dd3) fmv.w.x fs11, zero +core 0: 3 0x0000000080000120 (0xf0000dd3) f27 0xffffffff00000000 +core 0: 0x0000000080000124 (0xf0000e53) fmv.w.x ft8, zero +core 0: 3 0x0000000080000124 (0xf0000e53) f28 0xffffffff00000000 +core 0: 0x0000000080000128 (0xf0000ed3) fmv.w.x ft9, zero +core 0: 3 0x0000000080000128 (0xf0000ed3) f29 0xffffffff00000000 +core 0: 0x000000008000012c (0xf0000f53) fmv.w.x ft10, zero +core 0: 3 0x000000008000012c (0xf0000f53) f30 0xffffffff00000000 +core 0: 0x0000000080000130 (0xf0000fd3) fmv.w.x ft11, zero +core 0: 3 0x0000000080000130 (0xf0000fd3) f31 0xffffffff00000000 +core 0: 0x0000000080000134 (0x00000297) auipc t0, 0x0 +core 0: 3 0x0000000080000134 (0x00000297) x5 0x0000000080000134 +core 0: 0x0000000080000138 (0x04428293) addi t0, t0, 68 +core 0: 3 0x0000000080000138 (0x04428293) x5 0x0000000080000178 +core 0: 0x000000008000013c (0x30529073) csrw mtvec, t0 +core 0: 3 0x000000008000013c (0x30529073) c773_mtvec 0x0000000080000178 +core 0: 0x0000000080000140 (0x00003197) auipc gp, 0x3 +core 0: 3 0x0000000080000140 (0x00003197) x3 0x0000000080003140 +core 0: 0x0000000080000144 (0xa6018193) addi gp, gp, -1440 +core 0: 3 0x0000000080000144 (0xa6018193) x3 0x0000000080002ba0 +core 0: 0x0000000080000148 (0x00003217) auipc tp, 0x3 +core 0: 3 0x0000000080000148 (0x00003217) x4 0x0000000080003148 +core 0: 0x000000008000014c (0xab720213) addi tp, tp, -1353 +core 0: 3 0x000000008000014c (0xab720213) x4 0x0000000080002bff +core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002bc0 +core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 +core 0: 0x0000000080000158 (0x00100593) li a1, 1 +core 0: 3 0x0000000080000158 (0x00100593) x11 0x0000000000000001 +core 0: 0x000000008000015c (0x00b57063) bgeu a0, a1, pc + 0 +core 0: 3 0x000000008000015c (0x00b57063) +core 0: 0x0000000080000160 (0x00150113) addi sp, a0, 1 +core 0: 3 0x0000000080000160 (0x00150113) x2 0x0000000000000001 +core 0: 0x0000000080000164 (0x01111113) slli sp, sp, 17 +core 0: 3 0x0000000080000164 (0x01111113) x2 0x0000000000020000 +core 0: 0x0000000080000168 (0x00410133) add sp, sp, tp +core 0: 3 0x0000000080000168 (0x00410133) x2 0x0000000080022bc0 +core 0: 0x000000008000016c (0x01151613) slli a2, a0, 17 +core 0: 3 0x000000008000016c (0x01151613) x12 0x0000000000000000 +core 0: 0x0000000080000170 (0x00c20233) add tp, tp, a2 +core 0: 3 0x0000000080000170 (0x00c20233) x4 0x0000000080002bc0 +core 0: 0x0000000080000174 (0x2690106f) j pc + 0x1a68 +core 0: 3 0x0000000080000174 (0x2690106f) +core 0: >>>> _init +core 0: 0x0000000080001bdc (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001bdc (0xbd010113) x2 0x0000000080022790 +core 0: 0x0000000080001be0 (0xfe818613) addi a2, gp, -24 +core 0: 3 0x0000000080001be0 (0xfe818613) x12 0x0000000080002b88 +core 0: 0x0000000080001be4 (0xfe818793) addi a5, gp, -24 +core 0: 3 0x0000000080001be4 (0xfe818793) x15 0x0000000080002b88 +core 0: 0x0000000080001be8 (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001be8 (0x41413023) mem 0x0000000080022b90 0x0000000000000000 +core 0: 0x0000000080001bec (0x40f60833) sub a6, a2, a5 +core 0: 3 0x0000000080001bec (0x40f60833) x16 0x0000000000000000 +core 0: 0x0000000080001bf0 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001bf0 (0x03f10a13) x20 0x00000000800227cf +core 0: 0x0000000080001bf4 (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001bf4 (0x42813023) mem 0x0000000080022bb0 0x0000000000000000 +core 0: 0x0000000080001bf8 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001bf8 (0x40913c23) mem 0x0000000080022ba8 0x0000000000000000 +core 0: 0x0000000080001bfc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001bfc (0x00050413) x8 0x0000000000000000 +core 0: 0x0000000080001c00 (0x00058493) mv s1, a1 +core 0: 3 0x0000000080001c00 (0x00058493) x9 0x0000000000000001 +core 0: 0x0000000080001c04 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c04 (0x42113423) mem 0x0000000080022bb8 0x0000000000000000 +core 0: 0x0000000080001c08 (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c08 (0x41213823) mem 0x0000000080022ba0 0x0000000000000000 +core 0: 0x0000000080001c0c (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c0c (0x41313423) mem 0x0000000080022b98 0x0000000000000000 +core 0: 0x0000000080001c10 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c10 (0x3f513c23) mem 0x0000000080022b88 0x0000000000000000 +core 0: 0x0000000080001c14 (0x00080593) mv a1, a6 +core 0: 3 0x0000000080001c14 (0x00080593) x11 0x0000000000000000 +core 0: 0x0000000080001c18 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c18 (0xfc0a7a13) x20 0x00000000800227c0 +core 0: 0x0000000080001c1c (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c1c (0x00020513) x10 0x0000000080002bc0 +core 0: 0x0000000080001c20 (0x00020693) mv a3, tp +core 0: 3 0x0000000080001c20 (0x00020693) x13 0x0000000080002bc0 +core 0: 0x0000000080001c24 (0x0c05f757) vsetvli a4, a1, e8, m1, ta, ma +core 0: 3 0x0000000080001c24 (0x0c05f757) x14 0x0000000000000000 +core 0: 0x0000000080001c28 (0x02078087) vle8.v v1, (a5) +core 0: 3 0x0000000080001c28 (0x02078087) mem 0x0000000000000000 +core 0: 0x0000000080001c2c (0x40e585b3) sub a1, a1, a4 +core 0: 3 0x0000000080001c2c (0x40e585b3) x11 0x0000000000000000 +core 0: 0x0000000080001c30 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c30 (0x00e787b3) x15 0x0000000080002b88 +core 0: 0x0000000080001c34 (0x020680a7) vse8.v v1, (a3) +core 0: 3 0x0000000080001c34 (0x020680a7) mem 0x0000000000000000 0x00 +core 0: 0x0000000080001c38 (0x00e686b3) add a3, a3, a4 +core 0: 3 0x0000000080001c38 (0x00e686b3) x13 0x0000000080002bc0 +core 0: 0x0000000080001c3c (0xfe0594e3) bnez a1, pc - 24 +core 0: 3 0x0000000080001c3c (0xfe0594e3) +core 0: 0x0000000080001c40 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001c40 (0x00001797) x15 0x0000000080002c40 +core 0: 0x0000000080001c44 (0xfc478793) addi a5, a5, -60 +core 0: 3 0x0000000080001c44 (0xfc478793) x15 0x0000000080002c04 +core 0: 0x0000000080001c48 (0x01050533) add a0, a0, a6 +core 0: 3 0x0000000080001c48 (0x01050533) x10 0x0000000080002bc0 +core 0: 0x0000000080001c4c (0x40c78633) sub a2, a5, a2 +core 0: 3 0x0000000080001c4c (0x40c78633) x12 0x000000000000007c +core 0: 0x0000000080001c50 (0xf21ff0ef) jal pc - 0xe0 +core 0: 3 0x0000000080001c50 (0xf21ff0ef) x1 0x0000000080001c54 +core 0: >>>> memset +core 0: 0x0000000080001b70 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b70 (0x00c567b3) x15 0x0000000080002bfc +core 0: 0x0000000080001b74 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b74 (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b78 (0x00c50733) add a4, a0, a2 +core 0: 3 0x0000000080001b78 (0x00c50733) x14 0x0000000080002c3c +core 0: 0x0000000080001b7c (0x02078663) beqz a5, pc + 44 +core 0: 3 0x0000000080001b7c (0x02078663) +core 0: 0x0000000080001b80 (0x0c0077d7) vsetvli a5, zero, e8, m1, ta, ma +core 0: 3 0x0000000080001b80 (0x0c0077d7) x15 0x0000000000000010 +core 0: 0x0000000080001b84 (0x5e05c0d7) vmv.v.x v1, a1 +core 0: 3 0x0000000080001b84 (0x5e05c0d7) e8 m1 l10 v1 0x00000000000000000000000000000000 +core 0: 0x0000000080001b88 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b88 (0x00050793) x15 0x0000000080002bc0 +core 0: 0x0000000080001b8c (0x04e57663) bgeu a0, a4, pc + 76 +core 0: 3 0x0000000080001b8c (0x04e57663) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002bc0 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000006c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002bd0 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002bd0 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000005c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002be0 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002be0 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000004c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002bf0 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002bf0 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000003c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002c00 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002c00 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000002c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002c10 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002c10 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000001c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002c20 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x000000000000000e +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002c2c 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000000e +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002c2e +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x000000000000000e +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002c38 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x0000000000000000 +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002c3c +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001ba4 (0x00008067) ret +core 0: 3 0x0000000080001ba4 (0x00008067) +core 0: 0x0000000080001c54 (0x00048593) mv a1, s1 +core 0: 3 0x0000000080001c54 (0x00048593) x11 0x0000000000000001 +core 0: 0x0000000080001c58 (0x00040513) mv a0, s0 +core 0: 3 0x0000000080001c58 (0x00040513) x10 0x0000000000000000 +core 0: 0x0000000080001c5c (0xd29ff0ef) jal pc - 0x2d8 +core 0: 3 0x0000000080001c5c (0xd29ff0ef) x1 0x0000000080001c60 +core 0: >>>> thread_entry +core 0: 0x0000000080001984 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x0000000080001984 (0x00051463) +core 0: 0x0000000080001988 (0x00008067) ret +core 0: 3 0x0000000080001988 (0x00008067) +core 0: 0x0000000080001c60 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c60 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c64 (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c64 (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c68 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c68 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c6c (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c6c (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c70 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c70 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c74 (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c74 (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c78 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c78 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c7c (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c7c (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c80 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c80 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c84 (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c84 (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c88 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c88 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c8c (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c8c (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c90 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c90 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c94 (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c94 (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001c98 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001c98 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001c9c (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001c9c (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001ca0 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001ca0 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001ca4 (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001ca4 (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001ca8 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001ca8 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001cac (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001cac (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001cb0 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001cb0 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001cb4 (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001cb4 (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001cb8 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001cb8 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001cbc (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001cbc (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001cc0 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001cc0 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cc4 (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cc4 (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001cc8 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001cc8 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001ccc (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001ccc (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cd0 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cd0 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cd4 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cd4 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cd8 (0x16c000ef) jal pc + 0x16c +core 0: 3 0x0000000080001cd8 (0x16c000ef) x1 0x0000000080001cdc +core 0: >>>> main +core 0: 0x0000000080001e44 (0xed010113) addi sp, sp, -304 +core 0: 3 0x0000000080001e44 (0xed010113) x2 0x0000000080022660 +core 0: 0x0000000080001e48 (0x12813423) sd s0, 296(sp) +core 0: 3 0x0000000080001e48 (0x12813423) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001e4c (0x12913023) sd s1, 288(sp) +core 0: 3 0x0000000080001e4c (0x12913023) mem 0x0000000080022780 0x0000000000000001 +core 0: 0x0000000080001e50 (0x11213c23) sd s2, 280(sp) +core 0: 3 0x0000000080001e50 (0x11213c23) mem 0x0000000080022778 0x0000000000000000 +core 0: 0x0000000080001e54 (0x11313823) sd s3, 272(sp) +core 0: 3 0x0000000080001e54 (0x11313823) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001e58 (0x11413423) sd s4, 264(sp) +core 0: 3 0x0000000080001e58 (0x11413423) mem 0x0000000080022768 0x00000000800227c0 +core 0: 0x0000000080001e5c (0x11513023) sd s5, 256(sp) +core 0: 3 0x0000000080001e5c (0x11513023) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001e60 (0x0f613c23) sd s6, 248(sp) +core 0: 3 0x0000000080001e60 (0x0f613c23) mem 0x0000000080022758 0x0000000000000000 +core 0: 0x0000000080001e64 (0x0f713823) sd s7, 240(sp) +core 0: 3 0x0000000080001e64 (0x0f713823) mem 0x0000000080022750 0x0000000000000000 +core 0: 0x0000000080001e68 (0x0f813423) sd s8, 232(sp) +core 0: 3 0x0000000080001e68 (0x0f813423) mem 0x0000000080022748 0x0000000000000000 +core 0: 0x0000000080001e6c (0x0f913023) sd s9, 224(sp) +core 0: 3 0x0000000080001e6c (0x0f913023) mem 0x0000000080022740 0x0000000000000000 +core 0: 0x0000000080001e70 (0x0da13c23) sd s10, 216(sp) +core 0: 3 0x0000000080001e70 (0x0da13c23) mem 0x0000000080022738 0x0000000000000000 +core 0: 0x0000000080001e74 (0x0db13823) sd s11, 208(sp) +core 0: 3 0x0000000080001e74 (0x0db13823) mem 0x0000000080022730 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0c813427) fsd fs0, 200(sp) +core 0: 3 0x0000000080001e78 (0x0c813427) mem 0x0000000080022728 0xffffffff00000000 +core 0: 0x0000000080001e7c (0x0c913027) fsd fs1, 192(sp) +core 0: 3 0x0000000080001e7c (0x0c913027) mem 0x0000000080022720 0xffffffff00000000 +core 0: 0x0000000080001e80 (0x0b213c27) fsd fs2, 184(sp) +core 0: 3 0x0000000080001e80 (0x0b213c27) mem 0x0000000080022718 0xffffffff00000000 +core 0: 0x0000000080001e84 (0x0b313827) fsd fs3, 176(sp) +core 0: 3 0x0000000080001e84 (0x0b313827) mem 0x0000000080022710 0xffffffff00000000 +core 0: 0x0000000080001e88 (0x0b413427) fsd fs4, 168(sp) +core 0: 3 0x0000000080001e88 (0x0b413427) mem 0x0000000080022708 0xffffffff00000000 +core 0: 0x0000000080001e8c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001e8c (0xc00027f3) x15 0x000000000000042e +core 0: 0x0000000080001e90 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001e90 (0x00000797) x15 0x0000000080001e90 +core 0: 0x0000000080001e94 (0x5107b687) fld fa3, 1296(a5) +core 0: 3 0x0000000080001e94 (0x5107b687) f13 0x4330000000000000 mem 0x00000000800023a0 +core 0: 0x0000000080001e98 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001e98 (0x00000797) x15 0x0000000080001e98 +core 0: 0x0000000080001e9c (0x5187a607) flw fa2, 1304(a5) +core 0: 3 0x0000000080001e9c (0x5187a607) f12 0xffffffff40500000 mem 0x00000000800023b0 +core 0: 0x0000000080001ea0 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001ea0 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ea4 (0x00c12427) fsw fa2, 8(sp) +core 0: 3 0x0000000080001ea4 (0x00c12427) mem 0x0000000080022668 0x40500000 +core 0: 0x0000000080001ea8 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001ea8 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001eac (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001eac (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001eb0 (0x420787d3) fcvt.d.s fa5, fa5 +core 0: 3 0x0000000080001eb0 (0x420787d3) f15 0x400a000000000000 +core 0: 0x0000000080001eb4 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001eb4 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001eb8 (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001eb8 (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001ebc (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001ebc (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001ec0 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001ec0 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001ec4 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001ec4 (0x00070463) +core 0: 0x0000000080001ec8 (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001ec8 (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001ecc (0x4017f7d3) fcvt.s.d fa5, fa5 +core 0: 3 0x0000000080001ecc (0x4017f7d3) f15 0xffffffff40400000 +core 0: 0x0000000080001ed0 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x0000000080001ed0 (0x00f12627) mem 0x000000008002266c 0x40400000 +core 0: 0x0000000080001ed4 (0xfc0798e3) bnez a5, pc - 48 +core 0: 3 0x0000000080001ed4 (0xfc0798e3) +core 0: 0x0000000080001ed8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ed8 (0xc00027f3) x15 0x000000000000065e +core 0: 0x0000000080001edc (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001edc (0xc00027f3) x15 0x0000000000000667 +core 0: 0x0000000080001ee0 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001ee0 (0x00000797) x15 0x0000000080001ee0 +core 0: 0x0000000080001ee4 (0x4c87b607) fld fa2, 1224(a5) +core 0: 3 0x0000000080001ee4 (0x4c87b607) f12 0x400a000000000000 mem 0x00000000800023a8 +core 0: 0x0000000080001ee8 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001ee8 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001eec (0x00c13827) fsd fa2, 16(sp) +core 0: 3 0x0000000080001eec (0x00c13827) mem 0x0000000080022670 0x400a000000000000 +core 0: 0x0000000080001ef0 (0x01013787) fld fa5, 16(sp) +core 0: 3 0x0000000080001ef0 (0x01013787) f15 0x400a000000000000 mem 0x0000000080022670 +core 0: 0x0000000080001ef4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001ef4 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001ef8 (0x22f7a753) fsgnjx.d fa4, fa5, fa5 +core 0: 3 0x0000000080001ef8 (0x22f7a753) f14 0x400a000000000000 +core 0: 0x0000000080001efc (0xc227c6d3) fcvt.l.d a3, fa5 +core 0: 3 0x0000000080001efc (0xc227c6d3) c1_fflags 0x0000000000000001 x13 0x0000000000000003 +core 0: 0x0000000080001f00 (0xa2d71753) flt.d a4, fa4, fa3 +core 0: 3 0x0000000080001f00 (0xa2d71753) x14 0x0000000000000001 +core 0: 0x0000000080001f04 (0xd226f753) fcvt.d.l fa4, a3 +core 0: 3 0x0000000080001f04 (0xd226f753) f14 0x4008000000000000 +core 0: 0x0000000080001f08 (0x00070463) beqz a4, pc + 8 +core 0: 3 0x0000000080001f08 (0x00070463) +core 0: 0x0000000080001f0c (0x22f707d3) fsgnj.d fa5, fa4, fa5 +core 0: 3 0x0000000080001f0c (0x22f707d3) f15 0x4008000000000000 +core 0: 0x0000000080001f10 (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x0000000080001f10 (0x00f13c27) mem 0x0000000080022678 0x4008000000000000 +core 0: 0x0000000080001f14 (0xfc079ce3) bnez a5, pc - 40 +core 0: 3 0x0000000080001f14 (0xfc079ce3) +core 0: 0x0000000080001f18 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f18 (0xc00027f3) x15 0x00000000000007b2 +core 0: 0x0000000080001f1c (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f1c (0xc00027f3) x15 0x00000000000007bb +core 0: 0x0000000080001f20 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001f20 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f24 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f24 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f28 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f28 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f2c (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001f2c (0xe00792d3) x5 0x0000000000000040 +core 0: 0x0000000080001f30 (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001f30 (0xe0071353) x6 0x0000000000000040 +core 0: 0x0000000080001f34 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f34 (0x0062e2b3) x5 0x0000000000000040 +core 0: 0x0000000080001f38 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f38 (0x2002f393) x7 0x0000000000000000 +core 0: 0x0000000080001f3c (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f3c (0x00039663) +core 0: 0x0000000080001f40 (0xa0e78753) fle.s a4, fa5, fa4 +core 0: 3 0x0000000080001f40 (0xa0e78753) x14 0x0000000000000000 +core 0: 0x0000000080001f44 (0x0080006f) j pc + 0x8 +core 0: 3 0x0000000080001f44 (0x0080006f) +core 0: 0x0000000080001f4c (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f4c (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001f50 (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f50 (0xfc079ae3) +core 0: 0x0000000080001f54 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f54 (0xc00027f3) x15 0x000000000000088f +core 0: 0x0000000080001f58 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f58 (0xc00027f3) x15 0x0000000000000898 +core 0: 0x0000000080001f5c (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001f5c (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f60 (0x00812787) flw fa5, 8(sp) +core 0: 3 0x0000000080001f60 (0x00812787) f15 0xffffffff40500000 mem 0x0000000080022668 +core 0: 0x0000000080001f64 (0x00c12707) flw fa4, 12(sp) +core 0: 3 0x0000000080001f64 (0x00c12707) f14 0xffffffff40400000 mem 0x000000008002266c +core 0: 0x0000000080001f68 (0xe20792d3) fclass.d t0, fa5 +core 0: 3 0x0000000080001f68 (0xe20792d3) x5 0x0000000000000200 +core 0: 0x0000000080001f6c (0xe2071353) fclass.d t1, fa4 +core 0: 3 0x0000000080001f6c (0xe2071353) x6 0x0000000000000200 +core 0: 0x0000000080001f70 (0x0062e2b3) or t0, t0, t1 +core 0: 3 0x0000000080001f70 (0x0062e2b3) x5 0x0000000000000200 +core 0: 0x0000000080001f74 (0x2002f393) andi t2, t0, 512 +core 0: 3 0x0000000080001f74 (0x2002f393) x7 0x0000000000000200 +core 0: 0x0000000080001f78 (0x00039663) bnez t2, pc + 12 +core 0: 3 0x0000000080001f78 (0x00039663) +core 0: 0x0000000080001f84 (0x00000713) li a4, 0 +core 0: 3 0x0000000080001f84 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080001f88 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001f88 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001f8c (0xfc079ae3) bnez a5, pc - 44 +core 0: 3 0x0000000080001f8c (0xfc079ae3) +core 0: 0x0000000080001f90 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f90 (0xc00027f3) x15 0x0000000000000968 +core 0: 0x0000000080001f94 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001f94 (0xc00027f3) x15 0x0000000000000971 +core 0: 0x0000000080001f98 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001f98 (0x00000797) x15 0x0000000080001f98 +core 0: 0x0000000080001f9c (0x41c7a707) flw fa4, 1052(a5) +core 0: 3 0x0000000080001f9c (0x41c7a707) f14 0xffffffff80000000 mem 0x00000000800023b4 +core 0: 0x0000000080001fa0 (0xf00007d3) fmv.w.x fa5, zero +core 0: 3 0x0000000080001fa0 (0xf00007d3) f15 0xffffffff00000000 +core 0: 0x0000000080001fa4 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080001fa4 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fa8 (0xe00792d3) fclass.s t0, fa5 +core 0: 3 0x0000000080001fa8 (0xe00792d3) x5 0x0000000000000010 +core 0: 0x0000000080001fac (0xe0071353) fclass.s t1, fa4 +core 0: 3 0x0000000080001fac (0xe0071353) x6 0x0000000000000008 +core 0: 0x0000000080001fb0 (0x30000393) li t2, 768 +core 0: 3 0x0000000080001fb0 (0x30000393) x7 0x0000000000000300 +core 0: 0x0000000080001fb4 (0x0072fe33) and t3, t0, t2 +core 0: 3 0x0000000080001fb4 (0x0072fe33) x28 0x0000000000000000 +core 0: 0x0000000080001fb8 (0x00737eb3) and t4, t1, t2 +core 0: 3 0x0000000080001fb8 (0x00737eb3) x29 0x0000000000000000 +core 0: 0x0000000080001fbc (0x000e1863) bnez t3, pc + 16 +core 0: 3 0x0000000080001fbc (0x000e1863) +core 0: 0x0000000080001fc0 (0x000e9c63) bnez t4, pc + 24 +core 0: 3 0x0000000080001fc0 (0x000e9c63) +core 0: 0x0000000080001fc4 (0x28e786d3) fmin.s fa3, fa5, fa4 +core 0: 3 0x0000000080001fc4 (0x28e786d3) f13 0xffffffff80000000 +core 0: 0x0000000080001fc8 (0x01c0006f) j pc + 0x1c +core 0: 3 0x0000000080001fc8 (0x01c0006f) +core 0: 0x0000000080001fe4 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080001fe4 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x0000000080001fe8 (0xfc0790e3) bnez a5, pc - 64 +core 0: 3 0x0000000080001fe8 (0xfc0790e3) +core 0: 0x0000000080001fec (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001fec (0xc00027f3) x15 0x0000000000000a36 +core 0: 0x0000000080001ff0 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080001ff0 (0xc00027f3) x15 0x0000000000000a3f +core 0: 0x0000000080001ff4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080001ff4 (0x00000797) x15 0x0000000080001ff4 +core 0: 0x0000000080001ff8 (0x40878793) addi a5, a5, 1032 +core 0: 3 0x0000000080001ff8 (0x40878793) x15 0x00000000800023fc +core 0: 0x0000000080001ffc (0x0007a107) flw ft2, 0(a5) +core 0: 3 0x0000000080001ffc (0x0007a107) f2 0xffffffff3f400000 mem 0x00000000800023fc +core 0: 0x0000000080002000 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002000 (0x00000797) x15 0x0000000080002000 +core 0: 0x0000000080002004 (0x40078793) addi a5, a5, 1024 +core 0: 3 0x0000000080002004 (0x40078793) x15 0x0000000080002400 +core 0: 0x0000000080002008 (0x0007a087) flw ft1, 0(a5) +core 0: 3 0x0000000080002008 (0x0007a087) f1 0xffffffff3f800000 mem 0x0000000080002400 +core 0: 0x000000008000200c (0x00000d97) auipc s11, 0x0 +core 0: 3 0x000000008000200c (0x00000d97) x27 0x000000008000200c +core 0: 0x0000000080002010 (0x3acd8d93) addi s11, s11, 940 +core 0: 3 0x0000000080002010 (0x3acd8d93) x27 0x00000000800023b8 +core 0: 0x0000000080002014 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002014 (0x00000797) x15 0x0000000080002014 +core 0: 0x0000000080002018 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080002018 (0x3f078793) x15 0x0000000080002404 +core 0: 0x000000008000201c (0x00000d17) auipc s10, 0x0 +core 0: 3 0x000000008000201c (0x00000d17) x26 0x000000008000201c +core 0: 0x0000000080002020 (0x3a0d0d13) addi s10, s10, 928 +core 0: 3 0x0000000080002020 (0x3a0d0d13) x26 0x00000000800023bc +core 0: 0x0000000080002024 (0x00000c97) auipc s9, 0x0 +core 0: 3 0x0000000080002024 (0x00000c97) x25 0x0000000080002024 +core 0: 0x0000000080002028 (0x39cc8c93) addi s9, s9, 924 +core 0: 3 0x0000000080002028 (0x39cc8c93) x25 0x00000000800023c0 +core 0: 0x000000008000202c (0x00000c17) auipc s8, 0x0 +core 0: 3 0x000000008000202c (0x00000c17) x24 0x000000008000202c +core 0: 0x0000000080002030 (0x398c0c13) addi s8, s8, 920 +core 0: 3 0x0000000080002030 (0x398c0c13) x24 0x00000000800023c4 +core 0: 0x0000000080002034 (0x00000b97) auipc s7, 0x0 +core 0: 3 0x0000000080002034 (0x00000b97) x23 0x0000000080002034 +core 0: 0x0000000080002038 (0x394b8b93) addi s7, s7, 916 +core 0: 3 0x0000000080002038 (0x394b8b93) x23 0x00000000800023c8 +core 0: 0x000000008000203c (0x00000b17) auipc s6, 0x0 +core 0: 3 0x000000008000203c (0x00000b17) x22 0x000000008000203c +core 0: 0x0000000080002040 (0x390b0b13) addi s6, s6, 912 +core 0: 3 0x0000000080002040 (0x390b0b13) x22 0x00000000800023cc +core 0: 0x0000000080002044 (0x00000a97) auipc s5, 0x0 +core 0: 3 0x0000000080002044 (0x00000a97) x21 0x0000000080002044 +core 0: 0x0000000080002048 (0x38ca8a93) addi s5, s5, 908 +core 0: 3 0x0000000080002048 (0x38ca8a93) x21 0x00000000800023d0 +core 0: 0x000000008000204c (0x00000a17) auipc s4, 0x0 +core 0: 3 0x000000008000204c (0x00000a17) x20 0x000000008000204c +core 0: 0x0000000080002050 (0x388a0a13) addi s4, s4, 904 +core 0: 3 0x0000000080002050 (0x388a0a13) x20 0x00000000800023d4 +core 0: 0x0000000080002054 (0x00000997) auipc s3, 0x0 +core 0: 3 0x0000000080002054 (0x00000997) x19 0x0000000080002054 +core 0: 0x0000000080002058 (0x38498993) addi s3, s3, 900 +core 0: 3 0x0000000080002058 (0x38498993) x19 0x00000000800023d8 +core 0: 0x000000008000205c (0x00000917) auipc s2, 0x0 +core 0: 3 0x000000008000205c (0x00000917) x18 0x000000008000205c +core 0: 0x0000000080002060 (0x38090913) addi s2, s2, 896 +core 0: 3 0x0000000080002060 (0x38090913) x18 0x00000000800023dc +core 0: 0x0000000080002064 (0x00000497) auipc s1, 0x0 +core 0: 3 0x0000000080002064 (0x00000497) x9 0x0000000080002064 +core 0: 0x0000000080002068 (0x37c48493) addi s1, s1, 892 +core 0: 3 0x0000000080002068 (0x37c48493) x9 0x00000000800023e0 +core 0: 0x000000008000206c (0x00000417) auipc s0, 0x0 +core 0: 3 0x000000008000206c (0x00000417) x8 0x000000008000206c +core 0: 0x0000000080002070 (0x37840413) addi s0, s0, 888 +core 0: 3 0x0000000080002070 (0x37840413) x8 0x00000000800023e4 +core 0: 0x0000000080002074 (0x00000397) auipc t2, 0x0 +core 0: 3 0x0000000080002074 (0x00000397) x7 0x0000000080002074 +core 0: 0x0000000080002078 (0x37438393) addi t2, t2, 884 +core 0: 3 0x0000000080002078 (0x37438393) x7 0x00000000800023e8 +core 0: 0x000000008000207c (0x00000297) auipc t0, 0x0 +core 0: 3 0x000000008000207c (0x00000297) x5 0x000000008000207c +core 0: 0x0000000080002080 (0x37028293) addi t0, t0, 880 +core 0: 3 0x0000000080002080 (0x37028293) x5 0x00000000800023ec +core 0: 0x0000000080002084 (0x00000f97) auipc t6, 0x0 +core 0: 3 0x0000000080002084 (0x00000f97) x31 0x0000000080002084 +core 0: 0x0000000080002088 (0x36cf8f93) addi t6, t6, 876 +core 0: 3 0x0000000080002088 (0x36cf8f93) x31 0x00000000800023f0 +core 0: 0x000000008000208c (0x00000f17) auipc t5, 0x0 +core 0: 3 0x000000008000208c (0x00000f17) x30 0x000000008000208c +core 0: 0x0000000080002090 (0x368f0f13) addi t5, t5, 872 +core 0: 3 0x0000000080002090 (0x368f0f13) x30 0x00000000800023f4 +core 0: 0x0000000080002094 (0x00000e97) auipc t4, 0x0 +core 0: 3 0x0000000080002094 (0x00000e97) x29 0x0000000080002094 +core 0: 0x0000000080002098 (0x364e8e93) addi t4, t4, 868 +core 0: 3 0x0000000080002098 (0x364e8e93) x29 0x00000000800023f8 +core 0: 0x000000008000209c (0x0007a007) flw ft0, 0(a5) +core 0: 3 0x000000008000209c (0x0007a007) f0 0xffffffff3fa00000 mem 0x0000000080002404 +core 0: 0x00000000800020a0 (0x000da787) flw fa5, 0(s11) +core 0: 3 0x00000000800020a0 (0x000da787) f15 0xffffffffbf800000 mem 0x00000000800023b8 +core 0: 0x00000000800020a4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800020a4 (0x00000797) x15 0x00000000800020a4 +core 0: 0x00000000800020a8 (0x36478793) addi a5, a5, 868 +core 0: 3 0x00000000800020a8 (0x36478793) x15 0x0000000080002408 +core 0: 0x00000000800020ac (0x000d2a07) flw fs4, 0(s10) +core 0: 3 0x00000000800020ac (0x000d2a07) f20 0xffffffff37800000 mem 0x00000000800023bc +core 0: 0x00000000800020b0 (0x000ca987) flw fs3, 0(s9) +core 0: 3 0x00000000800020b0 (0x000ca987) f19 0xffffffff38000000 mem 0x00000000800023c0 +core 0: 0x00000000800020b4 (0x000c2907) flw fs2, 0(s8) +core 0: 3 0x00000000800020b4 (0x000c2907) f18 0xffffffff38800000 mem 0x00000000800023c4 +core 0: 0x00000000800020b8 (0x000ba487) flw fs1, 0(s7) +core 0: 3 0x00000000800020b8 (0x000ba487) f9 0xffffffff39000000 mem 0x00000000800023c8 +core 0: 0x00000000800020bc (0x000b2407) flw fs0, 0(s6) +core 0: 3 0x00000000800020bc (0x000b2407) f8 0xffffffff39800000 mem 0x00000000800023cc +core 0: 0x00000000800020c0 (0x000aaf87) flw ft11, 0(s5) +core 0: 3 0x00000000800020c0 (0x000aaf87) f31 0xffffffff3a000000 mem 0x00000000800023d0 +core 0: 0x00000000800020c4 (0x000a2f07) flw ft10, 0(s4) +core 0: 3 0x00000000800020c4 (0x000a2f07) f30 0xffffffff3a800000 mem 0x00000000800023d4 +core 0: 0x00000000800020c8 (0x0009ae87) flw ft9, 0(s3) +core 0: 3 0x00000000800020c8 (0x0009ae87) f29 0xffffffff3b000000 mem 0x00000000800023d8 +core 0: 0x00000000800020cc (0x00092e07) flw ft8, 0(s2) +core 0: 3 0x00000000800020cc (0x00092e07) f28 0xffffffff3b800000 mem 0x00000000800023dc +core 0: 0x00000000800020d0 (0x0004a887) flw fa7, 0(s1) +core 0: 3 0x00000000800020d0 (0x0004a887) f17 0xffffffff3c000000 mem 0x00000000800023e0 +core 0: 0x00000000800020d4 (0x00042807) flw fa6, 0(s0) +core 0: 3 0x00000000800020d4 (0x00042807) f16 0xffffffff3c800000 mem 0x00000000800023e4 +core 0: 0x00000000800020d8 (0x0003a387) flw ft7, 0(t2) +core 0: 3 0x00000000800020d8 (0x0003a387) f7 0xffffffff3d000000 mem 0x00000000800023e8 +core 0: 0x00000000800020dc (0x0002a307) flw ft6, 0(t0) +core 0: 3 0x00000000800020dc (0x0002a307) f6 0xffffffff3d800000 mem 0x00000000800023ec +core 0: 0x00000000800020e0 (0x000fa287) flw ft5, 0(t6) +core 0: 3 0x00000000800020e0 (0x000fa287) f5 0xffffffff3e000000 mem 0x00000000800023f0 +core 0: 0x00000000800020e4 (0x000f2207) flw ft4, 0(t5) +core 0: 3 0x00000000800020e4 (0x000f2207) f4 0xffffffff3e800000 mem 0x00000000800023f4 +core 0: 0x00000000800020e8 (0x000ea187) flw ft3, 0(t4) +core 0: 3 0x00000000800020e8 (0x000ea187) f3 0xffffffff3f000000 mem 0x00000000800023f8 +core 0: 0x00000000800020ec (0x0007a507) flw fa0, 0(a5) +core 0: 3 0x00000000800020ec (0x0007a507) f10 0xffffffff3fc00000 mem 0x0000000080002408 +core 0: 0x00000000800020f0 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800020f0 (0x00000797) x15 0x00000000800020f0 +core 0: 0x00000000800020f4 (0x31c78793) addi a5, a5, 796 +core 0: 3 0x00000000800020f4 (0x31c78793) x15 0x000000008000240c +core 0: 0x00000000800020f8 (0x0007a587) flw fa1, 0(a5) +core 0: 3 0x00000000800020f8 (0x0007a587) f11 0xffffffff3fe00000 mem 0x000000008000240c +core 0: 0x00000000800020fc (0x00000717) auipc a4, 0x0 +core 0: 3 0x00000000800020fc (0x00000717) x14 0x00000000800020fc +core 0: 0x0000000080002100 (0x31470713) addi a4, a4, 788 +core 0: 3 0x0000000080002100 (0x31470713) x14 0x0000000080002410 +core 0: 0x0000000080002104 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080002104 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080002108 (0x00000697) auipc a3, 0x0 +core 0: 3 0x0000000080002108 (0x00000697) x13 0x0000000080002108 +core 0: 0x000000008000210c (0x30c68693) addi a3, a3, 780 +core 0: 3 0x000000008000210c (0x30c68693) x13 0x0000000080002414 +core 0: 0x0000000080002110 (0x00000617) auipc a2, 0x0 +core 0: 3 0x0000000080002110 (0x00000617) x12 0x0000000080002110 +core 0: 0x0000000080002114 (0x30860613) addi a2, a2, 776 +core 0: 3 0x0000000080002114 (0x30860613) x12 0x0000000080002418 +core 0: 0x0000000080002118 (0x00000597) auipc a1, 0x0 +core 0: 3 0x0000000080002118 (0x00000597) x11 0x0000000080002118 +core 0: 0x000000008000211c (0x30458593) addi a1, a1, 772 +core 0: 3 0x000000008000211c (0x30458593) x11 0x000000008000241c +core 0: 0x0000000080002120 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080002120 (0x00000517) x10 0x0000000080002120 +core 0: 0x0000000080002124 (0x30050513) addi a0, a0, 768 +core 0: 3 0x0000000080002124 (0x30050513) x10 0x0000000080002420 +core 0: 0x0000000080002128 (0x00000817) auipc a6, 0x0 +core 0: 3 0x0000000080002128 (0x00000817) x16 0x0000000080002128 +core 0: 0x000000008000212c (0x2fc80813) addi a6, a6, 764 +core 0: 3 0x000000008000212c (0x2fc80813) x16 0x0000000080002424 +core 0: 0x0000000080002130 (0x00000897) auipc a7, 0x0 +core 0: 3 0x0000000080002130 (0x00000897) x17 0x0000000080002130 +core 0: 0x0000000080002134 (0x2f888893) addi a7, a7, 760 +core 0: 3 0x0000000080002134 (0x2f888893) x17 0x0000000080002428 +core 0: 0x0000000080002138 (0x00000317) auipc t1, 0x0 +core 0: 3 0x0000000080002138 (0x00000317) x6 0x0000000080002138 +core 0: 0x000000008000213c (0x2f430313) addi t1, t1, 756 +core 0: 3 0x000000008000213c (0x2f430313) x6 0x000000008000242c +core 0: 0x0000000080002140 (0x00000e17) auipc t3, 0x0 +core 0: 3 0x0000000080002140 (0x00000e17) x28 0x0000000080002140 +core 0: 0x0000000080002144 (0x2f0e0e13) addi t3, t3, 752 +core 0: 3 0x0000000080002144 (0x2f0e0e13) x28 0x0000000080002430 +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x0000000080002148 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002148 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000214c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000214c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002150 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002150 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002154 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002154 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002158 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002158 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000215c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000215c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002160 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002160 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002164 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002164 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002168 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002168 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000216c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000216c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x0000000080002170 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x0000000080002170 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x0000000080002174 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x0000000080002174 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x0000000080002178 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x0000000080002178 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x000000008000217c (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x000000008000217c (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x0000000080002180 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x0000000080002180 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x0000000080002184 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x0000000080002184 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x0000000080002188 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x0000000080002188 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x000000008000218c (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x000000008000218c (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x0000000080002190 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x0000000080002190 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x0000000080002194 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x0000000080002194 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x0000000080002198 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x0000000080002198 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x000000008000219c (0x00072687) flw fa3, 0(a4) +core 0: 3 0x000000008000219c (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800021a0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800021a0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800021a4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800021a4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800021a8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800021a8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800021ac (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800021ac (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800021b0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800021b0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800021b4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800021b4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800021b8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800021b8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800021bc (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800021bc (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800021c0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800021c0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800021c4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800021c4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800021c8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800021c8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800021cc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800021cc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x00000000800021d0 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x00000000800021d0 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x00000000800021d4 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x00000000800021d4 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x00000000800021d8 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x00000000800021d8 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x00000000800021dc (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x00000000800021dc (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x00000000800021e0 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x00000000800021e0 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x00000000800021e4 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x00000000800021e4 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x00000000800021e8 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x00000000800021e8 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x00000000800021ec (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x00000000800021ec (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x00000000800021f0 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x00000000800021f0 (0xf4079ce3) +core 0: 0x00000000800021f4 (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800021f4 (0x00000797) x15 0x00000000800021f4 +core 0: 0x00000000800021f8 (0x20878793) addi a5, a5, 520 +core 0: 3 0x00000000800021f8 (0x20878793) x15 0x00000000800023fc +core 0: 0x00000000800021fc (0x0007a107) flw ft2, 0(a5) +core 0: 3 0x00000000800021fc (0x0007a107) f2 0xffffffff3f400000 mem 0x00000000800023fc +core 0: 0x0000000080002200 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002200 (0x00000797) x15 0x0000000080002200 +core 0: 0x0000000080002204 (0x20078793) addi a5, a5, 512 +core 0: 3 0x0000000080002204 (0x20078793) x15 0x0000000080002400 +core 0: 0x0000000080002208 (0x0007a087) flw ft1, 0(a5) +core 0: 3 0x0000000080002208 (0x0007a087) f1 0xffffffff3f800000 mem 0x0000000080002400 +core 0: 0x000000008000220c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000220c (0x00000797) x15 0x000000008000220c +core 0: 0x0000000080002210 (0x1f878793) addi a5, a5, 504 +core 0: 3 0x0000000080002210 (0x1f878793) x15 0x0000000080002404 +core 0: 0x0000000080002214 (0x0007a007) flw ft0, 0(a5) +core 0: 3 0x0000000080002214 (0x0007a007) f0 0xffffffff3fa00000 mem 0x0000000080002404 +core 0: 0x0000000080002218 (0x000da787) flw fa5, 0(s11) +core 0: 3 0x0000000080002218 (0x000da787) f15 0xffffffffbf800000 mem 0x00000000800023b8 +core 0: 0x000000008000221c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000221c (0x00000797) x15 0x000000008000221c +core 0: 0x0000000080002220 (0x1ec78793) addi a5, a5, 492 +core 0: 3 0x0000000080002220 (0x1ec78793) x15 0x0000000080002408 +core 0: 0x0000000080002224 (0x000d2a07) flw fs4, 0(s10) +core 0: 3 0x0000000080002224 (0x000d2a07) f20 0xffffffff37800000 mem 0x00000000800023bc +core 0: 0x0000000080002228 (0x000ca987) flw fs3, 0(s9) +core 0: 3 0x0000000080002228 (0x000ca987) f19 0xffffffff38000000 mem 0x00000000800023c0 +core 0: 0x000000008000222c (0x000c2907) flw fs2, 0(s8) +core 0: 3 0x000000008000222c (0x000c2907) f18 0xffffffff38800000 mem 0x00000000800023c4 +core 0: 0x0000000080002230 (0x000ba487) flw fs1, 0(s7) +core 0: 3 0x0000000080002230 (0x000ba487) f9 0xffffffff39000000 mem 0x00000000800023c8 +core 0: 0x0000000080002234 (0x000b2407) flw fs0, 0(s6) +core 0: 3 0x0000000080002234 (0x000b2407) f8 0xffffffff39800000 mem 0x00000000800023cc +core 0: 0x0000000080002238 (0x000aaf87) flw ft11, 0(s5) +core 0: 3 0x0000000080002238 (0x000aaf87) f31 0xffffffff3a000000 mem 0x00000000800023d0 +core 0: 0x000000008000223c (0x000a2f07) flw ft10, 0(s4) +core 0: 3 0x000000008000223c (0x000a2f07) f30 0xffffffff3a800000 mem 0x00000000800023d4 +core 0: 0x0000000080002240 (0x0009ae87) flw ft9, 0(s3) +core 0: 3 0x0000000080002240 (0x0009ae87) f29 0xffffffff3b000000 mem 0x00000000800023d8 +core 0: 0x0000000080002244 (0x00092e07) flw ft8, 0(s2) +core 0: 3 0x0000000080002244 (0x00092e07) f28 0xffffffff3b800000 mem 0x00000000800023dc +core 0: 0x0000000080002248 (0x0004a887) flw fa7, 0(s1) +core 0: 3 0x0000000080002248 (0x0004a887) f17 0xffffffff3c000000 mem 0x00000000800023e0 +core 0: 0x000000008000224c (0x00042807) flw fa6, 0(s0) +core 0: 3 0x000000008000224c (0x00042807) f16 0xffffffff3c800000 mem 0x00000000800023e4 +core 0: 0x0000000080002250 (0x0003a387) flw ft7, 0(t2) +core 0: 3 0x0000000080002250 (0x0003a387) f7 0xffffffff3d000000 mem 0x00000000800023e8 +core 0: 0x0000000080002254 (0x0002a307) flw ft6, 0(t0) +core 0: 3 0x0000000080002254 (0x0002a307) f6 0xffffffff3d800000 mem 0x00000000800023ec +core 0: 0x0000000080002258 (0x000fa287) flw ft5, 0(t6) +core 0: 3 0x0000000080002258 (0x000fa287) f5 0xffffffff3e000000 mem 0x00000000800023f0 +core 0: 0x000000008000225c (0x000f2207) flw ft4, 0(t5) +core 0: 3 0x000000008000225c (0x000f2207) f4 0xffffffff3e800000 mem 0x00000000800023f4 +core 0: 0x0000000080002260 (0x000ea187) flw ft3, 0(t4) +core 0: 3 0x0000000080002260 (0x000ea187) f3 0xffffffff3f000000 mem 0x00000000800023f8 +core 0: 0x0000000080002264 (0x0007a507) flw fa0, 0(a5) +core 0: 3 0x0000000080002264 (0x0007a507) f10 0xffffffff3fc00000 mem 0x0000000080002408 +core 0: 0x0000000080002268 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002268 (0x00000797) x15 0x0000000080002268 +core 0: 0x000000008000226c (0x1a478793) addi a5, a5, 420 +core 0: 3 0x000000008000226c (0x1a478793) x15 0x000000008000240c +core 0: 0x0000000080002270 (0x0007a587) flw fa1, 0(a5) +core 0: 3 0x0000000080002270 (0x0007a587) f11 0xffffffff3fe00000 mem 0x000000008000240c +core 0: 0x0000000080002274 (0x00a00793) li a5, 10 +core 0: 3 0x0000000080002274 (0x00a00793) x15 0x000000000000000a +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000009 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000008 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000007 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000006 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000005 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000004 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000003 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000002 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000001 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002278 (0x02f12027) fsw fa5, 32(sp) +core 0: 3 0x0000000080002278 (0x02f12027) mem 0x0000000080022680 0xbf800000 +core 0: 0x000000008000227c (0x02f12227) fsw fa5, 36(sp) +core 0: 3 0x000000008000227c (0x02f12227) mem 0x0000000080022684 0xbf800000 +core 0: 0x0000000080002280 (0x03412427) fsw fs4, 40(sp) +core 0: 3 0x0000000080002280 (0x03412427) mem 0x0000000080022688 0x37800000 +core 0: 0x0000000080002284 (0x03312627) fsw fs3, 44(sp) +core 0: 3 0x0000000080002284 (0x03312627) mem 0x000000008002268c 0x38000000 +core 0: 0x0000000080002288 (0x03212827) fsw fs2, 48(sp) +core 0: 3 0x0000000080002288 (0x03212827) mem 0x0000000080022690 0x38800000 +core 0: 0x000000008000228c (0x02912a27) fsw fs1, 52(sp) +core 0: 3 0x000000008000228c (0x02912a27) mem 0x0000000080022694 0x39000000 +core 0: 0x0000000080002290 (0x02812c27) fsw fs0, 56(sp) +core 0: 3 0x0000000080002290 (0x02812c27) mem 0x0000000080022698 0x39800000 +core 0: 0x0000000080002294 (0x03f12e27) fsw ft11, 60(sp) +core 0: 3 0x0000000080002294 (0x03f12e27) mem 0x000000008002269c 0x3a000000 +core 0: 0x0000000080002298 (0x05e12027) fsw ft10, 64(sp) +core 0: 3 0x0000000080002298 (0x05e12027) mem 0x00000000800226a0 0x3a800000 +core 0: 0x000000008000229c (0x05d12227) fsw ft9, 68(sp) +core 0: 3 0x000000008000229c (0x05d12227) mem 0x00000000800226a4 0x3b000000 +core 0: 0x00000000800022a0 (0x05c12427) fsw ft8, 72(sp) +core 0: 3 0x00000000800022a0 (0x05c12427) mem 0x00000000800226a8 0x3b800000 +core 0: 0x00000000800022a4 (0x05112627) fsw fa7, 76(sp) +core 0: 3 0x00000000800022a4 (0x05112627) mem 0x00000000800226ac 0x3c000000 +core 0: 0x00000000800022a8 (0x05012827) fsw fa6, 80(sp) +core 0: 3 0x00000000800022a8 (0x05012827) mem 0x00000000800226b0 0x3c800000 +core 0: 0x00000000800022ac (0x04712a27) fsw ft7, 84(sp) +core 0: 3 0x00000000800022ac (0x04712a27) mem 0x00000000800226b4 0x3d000000 +core 0: 0x00000000800022b0 (0x04612c27) fsw ft6, 88(sp) +core 0: 3 0x00000000800022b0 (0x04612c27) mem 0x00000000800226b8 0x3d800000 +core 0: 0x00000000800022b4 (0x04512e27) fsw ft5, 92(sp) +core 0: 3 0x00000000800022b4 (0x04512e27) mem 0x00000000800226bc 0x3e000000 +core 0: 0x00000000800022b8 (0x06412027) fsw ft4, 96(sp) +core 0: 3 0x00000000800022b8 (0x06412027) mem 0x00000000800226c0 0x3e800000 +core 0: 0x00000000800022bc (0x06312227) fsw ft3, 100(sp) +core 0: 3 0x00000000800022bc (0x06312227) mem 0x00000000800226c4 0x3f000000 +core 0: 0x00000000800022c0 (0x06212427) fsw ft2, 104(sp) +core 0: 3 0x00000000800022c0 (0x06212427) mem 0x00000000800226c8 0x3f400000 +core 0: 0x00000000800022c4 (0x06112627) fsw ft1, 108(sp) +core 0: 3 0x00000000800022c4 (0x06112627) mem 0x00000000800226cc 0x3f800000 +core 0: 0x00000000800022c8 (0x06012827) fsw ft0, 112(sp) +core 0: 3 0x00000000800022c8 (0x06012827) mem 0x00000000800226d0 0x3fa00000 +core 0: 0x00000000800022cc (0x00072687) flw fa3, 0(a4) +core 0: 3 0x00000000800022cc (0x00072687) f13 0xffffffff40000000 mem 0x0000000080002410 +core 0: 0x00000000800022d0 (0x06a12a27) fsw fa0, 116(sp) +core 0: 3 0x00000000800022d0 (0x06a12a27) mem 0x00000000800226d4 0x3fc00000 +core 0: 0x00000000800022d4 (0x0006a707) flw fa4, 0(a3) +core 0: 3 0x00000000800022d4 (0x0006a707) f14 0xffffffff40200000 mem 0x0000000080002414 +core 0: 0x00000000800022d8 (0x06b12c27) fsw fa1, 120(sp) +core 0: 3 0x00000000800022d8 (0x06b12c27) mem 0x00000000800226d8 0x3fe00000 +core 0: 0x00000000800022dc (0x00062607) flw fa2, 0(a2) +core 0: 3 0x00000000800022dc (0x00062607) f12 0xffffffff40400000 mem 0x0000000080002418 +core 0: 0x00000000800022e0 (0x06d12e27) fsw fa3, 124(sp) +core 0: 3 0x00000000800022e0 (0x06d12e27) mem 0x00000000800226dc 0x40000000 +core 0: 0x00000000800022e4 (0x0005a687) flw fa3, 0(a1) +core 0: 3 0x00000000800022e4 (0x0005a687) f13 0xffffffff40800000 mem 0x000000008000241c +core 0: 0x00000000800022e8 (0x08e12027) fsw fa4, 128(sp) +core 0: 3 0x00000000800022e8 (0x08e12027) mem 0x00000000800226e0 0x40200000 +core 0: 0x00000000800022ec (0x00052707) flw fa4, 0(a0) +core 0: 3 0x00000000800022ec (0x00052707) f14 0xffffffff41000000 mem 0x0000000080002420 +core 0: 0x00000000800022f0 (0x08c12227) fsw fa2, 132(sp) +core 0: 3 0x00000000800022f0 (0x08c12227) mem 0x00000000800226e4 0x40400000 +core 0: 0x00000000800022f4 (0x08d12427) fsw fa3, 136(sp) +core 0: 3 0x00000000800022f4 (0x08d12427) mem 0x00000000800226e8 0x40800000 +core 0: 0x00000000800022f8 (0x08e12627) fsw fa4, 140(sp) +core 0: 3 0x00000000800022f8 (0x08e12627) mem 0x00000000800226ec 0x41000000 +core 0: 0x00000000800022fc (0x00082707) flw fa4, 0(a6) +core 0: 3 0x00000000800022fc (0x00082707) f14 0xffffffff41800000 mem 0x0000000080002424 +core 0: 0x0000000080002300 (0x0008a607) flw fa2, 0(a7) +core 0: 3 0x0000000080002300 (0x0008a607) f12 0xffffffff42000000 mem 0x0000000080002428 +core 0: 0x0000000080002304 (0x00032687) flw fa3, 0(t1) +core 0: 3 0x0000000080002304 (0x00032687) f13 0xffffffff7f800000 mem 0x000000008000242c +core 0: 0x0000000080002308 (0x08e12827) fsw fa4, 144(sp) +core 0: 3 0x0000000080002308 (0x08e12827) mem 0x00000000800226f0 0x41800000 +core 0: 0x000000008000230c (0x000e2707) flw fa4, 0(t3) +core 0: 3 0x000000008000230c (0x000e2707) f14 0xffffffff7fc00000 mem 0x0000000080002430 +core 0: 0x0000000080002310 (0x08c12a27) fsw fa2, 148(sp) +core 0: 3 0x0000000080002310 (0x08c12a27) mem 0x00000000800226f4 0x42000000 +core 0: 0x0000000080002314 (0x08d12c27) fsw fa3, 152(sp) +core 0: 3 0x0000000080002314 (0x08d12c27) mem 0x00000000800226f8 0x7f800000 +core 0: 0x0000000080002318 (0xfff7879b) addiw a5, a5, -1 +core 0: 3 0x0000000080002318 (0xfff7879b) x15 0x0000000000000000 +core 0: 0x000000008000231c (0x08e12e27) fsw fa4, 156(sp) +core 0: 3 0x000000008000231c (0x08e12e27) mem 0x00000000800226fc 0x7fc00000 +core 0: 0x0000000080002320 (0xf4079ce3) bnez a5, pc - 168 +core 0: 3 0x0000000080002320 (0xf4079ce3) +core 0: 0x0000000080002324 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002324 (0xc00027f3) x15 0x0000000000001006 +core 0: 0x0000000080002328 (0x12813403) ld s0, 296(sp) +core 0: 3 0x0000000080002328 (0x12813403) x8 0x0000000000000000 mem 0x0000000080022788 +core 0: 0x000000008000232c (0x12013483) ld s1, 288(sp) +core 0: 3 0x000000008000232c (0x12013483) x9 0x0000000000000001 mem 0x0000000080022780 +core 0: 0x0000000080002330 (0x11813903) ld s2, 280(sp) +core 0: 3 0x0000000080002330 (0x11813903) x18 0x0000000000000000 mem 0x0000000080022778 +core 0: 0x0000000080002334 (0x11013983) ld s3, 272(sp) +core 0: 3 0x0000000080002334 (0x11013983) x19 0x0000000000000000 mem 0x0000000080022770 +core 0: 0x0000000080002338 (0x10813a03) ld s4, 264(sp) +core 0: 3 0x0000000080002338 (0x10813a03) x20 0x00000000800227c0 mem 0x0000000080022768 +core 0: 0x000000008000233c (0x10013a83) ld s5, 256(sp) +core 0: 3 0x000000008000233c (0x10013a83) x21 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x0000000080002340 (0x0f813b03) ld s6, 248(sp) +core 0: 3 0x0000000080002340 (0x0f813b03) x22 0x0000000000000000 mem 0x0000000080022758 +core 0: 0x0000000080002344 (0x0f013b83) ld s7, 240(sp) +core 0: 3 0x0000000080002344 (0x0f013b83) x23 0x0000000000000000 mem 0x0000000080022750 +core 0: 0x0000000080002348 (0x0e813c03) ld s8, 232(sp) +core 0: 3 0x0000000080002348 (0x0e813c03) x24 0x0000000000000000 mem 0x0000000080022748 +core 0: 0x000000008000234c (0x0e013c83) ld s9, 224(sp) +core 0: 3 0x000000008000234c (0x0e013c83) x25 0x0000000000000000 mem 0x0000000080022740 +core 0: 0x0000000080002350 (0x0d813d03) ld s10, 216(sp) +core 0: 3 0x0000000080002350 (0x0d813d03) x26 0x0000000000000000 mem 0x0000000080022738 +core 0: 0x0000000080002354 (0x0d013d83) ld s11, 208(sp) +core 0: 3 0x0000000080002354 (0x0d013d83) x27 0x0000000000000000 mem 0x0000000080022730 +core 0: 0x0000000080002358 (0x0c813407) fld fs0, 200(sp) +core 0: 3 0x0000000080002358 (0x0c813407) f8 0xffffffff00000000 mem 0x0000000080022728 +core 0: 0x000000008000235c (0x0c013487) fld fs1, 192(sp) +core 0: 3 0x000000008000235c (0x0c013487) f9 0xffffffff00000000 mem 0x0000000080022720 +core 0: 0x0000000080002360 (0x0b813907) fld fs2, 184(sp) +core 0: 3 0x0000000080002360 (0x0b813907) f18 0xffffffff00000000 mem 0x0000000080022718 +core 0: 0x0000000080002364 (0x0b013987) fld fs3, 176(sp) +core 0: 3 0x0000000080002364 (0x0b013987) f19 0xffffffff00000000 mem 0x0000000080022710 +core 0: 0x0000000080002368 (0x0a813a07) fld fs4, 168(sp) +core 0: 3 0x0000000080002368 (0x0a813a07) f20 0xffffffff00000000 mem 0x0000000080022708 +core 0: 0x000000008000236c (0x00000513) li a0, 0 +core 0: 3 0x000000008000236c (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080002370 (0x13010113) addi sp, sp, 304 +core 0: 3 0x0000000080002370 (0x13010113) x2 0x0000000080022790 +core 0: 0x0000000080002374 (0x00008067) ret +core 0: 3 0x0000000080002374 (0x00008067) +core 0: 0x0000000080001cdc (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cdc (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001ce0 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001ce0 (0x000a0493) x9 0x00000000800227c0 +core 0: 0x0000000080001ce4 (0xef818413) addi s0, gp, -264 +core 0: 3 0x0000000080001ce4 (0xef818413) x8 0x0000000080002a98 +core 0: 0x0000000080001ce8 (0xe0818913) addi s2, gp, -504 +core 0: 3 0x0000000080001ce8 (0xe0818913) x18 0x00000000800029a8 +core 0: 0x0000000080001cec (0xfe818993) addi s3, gp, -24 +core 0: 3 0x0000000080001cec (0xfe818993) x19 0x0000000080002b88 +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029a8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227c0 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002a98 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227c0 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227c0 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000000001006 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000080002410 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227c0 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227c0 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029a8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c0 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c1 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c2 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c3 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c4 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c5 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c6 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c7 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c8 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c9 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ca +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ca +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ca mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ca 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ca mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227cb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227cb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227c0 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227c0 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029a8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227cb mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227cb 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227cb mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002a98 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002aa0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029b0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227cb +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029b0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002aa0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227cb +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002aa0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227cb +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227cb +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227cb +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227cb +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227cb +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029b0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cb 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227cc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227cc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cc 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227cd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227cd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cd 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ce +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ce +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ce mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ce 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ce mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227cf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227cf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cf mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cf 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cf mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d0 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d1 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d2 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d3 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d4 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d5 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227cb mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227cb mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029b0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227d6 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227d6 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227d6 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002aa0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002aa8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029b8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227d6 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029b8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002aa8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227d6 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002aa8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227d6 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227d6 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227d6 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227d6 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227d6 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029b8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d6 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d7 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d8 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d9 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227da +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227da +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227da mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227da 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227da mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227db +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227db +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227db mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227db 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227db mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227dc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227dc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227dc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227dc 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227dc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227dd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227dd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227dd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227dd 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227dd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227de +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227de +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227de mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227de 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227de mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227df +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227df +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227df mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227df 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227df mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e0 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227d6 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227d6 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029b8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227e1 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227e1 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227e1 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002aa8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ab0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029c0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227e1 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029c0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227e1 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ab0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227e1 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227e1 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227e1 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227e1 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227e1 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029c0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e1 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e2 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e3 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e4 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e5 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e6 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e7 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e8 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e9 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ea +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ea +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ea mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ea 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ea mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227eb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227eb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227eb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227eb 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227eb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ec +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ec +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227e1 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227e1 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029c0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227ec mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227ec 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227ec mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ab0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ab8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029c8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227ec +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029c8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227ec +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ab8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227ec +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227ec +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227ec +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227ec +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227ec +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029c8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ec mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ec 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ec mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ed +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ed +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ed mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ed 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ed mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ee +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ee +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ee mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ee 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ee mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ef +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ef +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ef mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ef 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ef mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f0 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f1 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f2 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f3 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f4 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f5 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f6 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227ec mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227ec mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029c8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227f7 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227f7 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227f7 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ab8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ac0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029d0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227f7 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029d0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ac0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227f7 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ac0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227f7 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227f7 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227f7 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227f7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227f7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029d0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f7 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f8 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f9 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fa mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fa 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fa mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fb 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fc 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fd 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fe +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fe +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fe mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fe 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fe mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ff +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ff +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ff mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ff 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ff mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022800 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022800 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022800 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022800 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022800 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022801 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022801 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022801 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022801 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022801 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022802 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022802 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227f7 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227f7 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029d0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022802 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022802 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022802 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ac0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ac8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029d8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022802 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029d8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ac8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022802 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ac8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022802 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022802 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022802 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022802 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022802 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029d8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022802 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022802 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022802 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022803 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022803 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022803 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022803 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022803 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022804 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022804 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022804 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022804 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022804 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022805 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022805 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022805 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022805 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022805 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022806 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022806 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022806 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022806 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022806 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022807 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022807 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022807 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022807 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022807 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022808 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022808 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022808 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022808 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022808 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022809 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022809 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022809 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022809 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022809 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280b 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280c 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022802 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022802 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029d8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002280d mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002280d 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002280d mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ac8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ad0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029e0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002280d +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029e0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ad0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002280d +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ad0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002280d +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002280d +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002280d +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002280d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002280d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029e0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280d 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280e 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280f 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022810 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022810 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022810 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022810 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022810 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022811 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022811 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022811 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022811 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022811 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022812 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022812 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022812 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022812 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022812 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022813 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022813 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022813 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022813 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022813 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022814 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022814 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022814 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022814 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022814 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022815 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022815 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022815 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022815 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022815 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022816 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022816 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022816 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022816 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022816 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022817 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022817 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022817 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022817 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022817 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022818 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022818 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002280d mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002280d mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029e0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022818 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022818 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022818 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ad0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ad8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029e8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022818 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029e8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ad8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022818 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ad8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022818 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022818 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022818 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022818 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022818 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029e8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022818 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022818 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022818 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022819 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022819 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022819 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022819 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022819 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281a 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281b 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281d 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281f 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022820 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022820 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022820 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022820 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022820 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022821 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022821 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022821 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022821 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022821 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022822 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022822 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022822 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022822 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022822 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022823 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022823 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022818 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022818 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029e8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022823 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022823 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022823 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ad8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ae0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029f0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022823 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029f0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ae0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022823 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ae0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022823 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022823 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022823 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022823 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022823 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029f0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022823 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022823 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022823 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022824 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022824 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022824 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022824 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022824 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022825 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022825 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022825 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022825 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022825 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022826 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022826 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022826 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022826 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022826 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022827 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022827 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022827 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022827 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022827 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022828 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022828 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022828 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022828 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022828 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022829 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022829 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022829 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022829 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022829 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282a 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282b 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282c 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282d 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022823 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022823 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029f0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002282e mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002282e 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002282e mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ae0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ae8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029f8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002282e +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029f8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ae8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002282e +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ae8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002282e +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002282e +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002282e +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002282e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002282e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029f8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282e 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282f 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022830 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022830 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022830 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022830 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022830 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022831 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022831 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022831 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022831 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022831 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022832 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022832 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022832 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022832 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022832 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022833 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022833 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022833 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022833 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022833 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022834 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022834 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022834 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022834 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022834 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022835 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022835 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022835 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022835 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022835 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022836 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022836 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022836 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022836 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022836 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022837 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022837 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022837 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022837 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022837 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022838 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022838 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022838 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022838 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022838 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022839 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022839 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002282e mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002282e mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029f8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022839 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022839 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022839 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ae8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002af0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a00 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022839 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a00 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002af0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022839 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002af0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022839 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022839 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022839 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022839 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022839 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a00 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022839 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022839 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022839 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283a 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283b 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283d 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283e 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283f 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022840 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022840 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022840 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022840 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022840 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022841 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022841 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022841 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022841 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022841 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022842 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022842 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022842 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022842 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022842 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022843 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022843 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022843 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022843 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022843 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022844 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022844 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022839 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022839 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a00 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022844 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022844 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022844 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002af0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002af8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a08 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022844 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a08 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002af8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022844 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002af8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022844 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022844 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022844 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022844 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022844 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a08 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022844 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022844 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022844 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022845 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022845 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022845 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022845 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022845 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022846 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022846 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022846 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022846 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022846 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022847 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022847 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022847 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022847 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022847 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022848 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022848 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022848 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022848 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022848 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022849 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022849 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022849 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022849 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022849 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284b 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284d 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284e 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022844 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022844 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a08 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002284f mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002284f 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002284f mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002af8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b00 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a10 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002284f +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a10 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b00 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002284f +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b00 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002284f +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002284f +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002284f +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002284f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002284f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a10 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284f 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022850 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022850 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022850 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022850 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022850 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022851 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022851 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022851 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022851 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022851 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022852 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022852 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022852 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022852 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022852 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022853 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022853 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022853 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022853 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022853 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022854 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022854 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022854 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022854 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022854 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022855 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022855 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022855 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022855 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022855 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022856 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022856 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022856 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022856 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022856 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022857 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022857 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022857 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022857 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022857 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022858 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022858 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022858 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022858 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022858 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022859 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022859 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022859 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022859 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022859 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002284f mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002284f mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a10 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002285a mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002285a 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002285a mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b00 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b08 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a18 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002285a +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a18 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b08 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002285a +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b08 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002285a +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002285a +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002285a +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002285a +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002285a +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a18 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285a 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285b 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285c 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285d 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285e 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285f 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022860 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022860 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022860 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022860 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022860 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022861 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022861 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022861 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022861 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022861 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022862 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022862 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022862 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022862 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022862 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022863 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022863 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022863 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022863 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022863 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022864 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022864 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022864 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022864 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022864 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022865 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022865 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002285a mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002285a mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a18 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022865 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022865 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022865 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b08 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b10 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a20 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022865 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a20 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b10 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022865 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b10 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022865 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022865 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022865 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022865 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022865 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a20 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022865 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022865 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022865 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022866 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022866 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022866 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022866 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022866 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022867 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022867 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022867 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022867 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022867 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022868 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022868 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022868 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022868 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022868 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022869 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022869 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022869 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022869 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022869 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286a 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286b 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286c 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286d 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286e 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286f 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022870 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022870 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022865 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022865 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a20 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022870 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022870 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022870 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b10 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b18 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a28 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022870 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a28 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b18 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022870 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b18 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022870 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022870 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022870 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022870 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022870 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a28 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022870 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022870 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022870 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022871 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022871 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022871 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022871 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022871 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022872 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022872 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022872 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022872 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022872 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022873 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022873 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022873 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022873 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022873 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022874 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022874 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022874 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022874 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022874 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022875 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022875 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022875 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022875 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022875 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022876 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022876 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022876 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022876 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022876 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022877 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022877 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022877 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022877 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022877 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022878 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022878 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022878 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022878 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022878 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022879 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022879 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022879 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022879 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022879 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287a 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022870 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022870 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a28 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002287b mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002287b 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002287b mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b18 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b20 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a30 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002287b +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a30 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b20 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002287b +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b20 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002287b +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002287b +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002287b +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002287b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002287b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a30 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287b 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287c 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287d 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287e 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022880 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022880 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022880 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022880 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022880 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022881 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022881 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022881 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022881 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022881 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022882 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022882 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022882 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022882 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022882 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022883 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022883 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022883 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022883 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022883 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022884 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022884 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022884 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022884 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022884 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022885 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022885 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022885 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022885 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022885 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022886 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022886 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002287b mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002287b mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a30 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022886 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022886 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022886 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b20 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b28 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a38 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022886 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a38 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b28 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022886 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b28 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022886 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022886 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022886 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022886 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022886 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a38 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022886 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022886 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022886 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022887 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022887 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022887 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022887 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022887 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022888 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022888 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022888 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022888 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022888 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022889 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022889 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022889 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022889 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022889 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288a 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288b 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288d 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288f 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022890 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022890 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022890 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022890 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022890 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022891 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022891 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022886 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022886 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a38 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022891 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022891 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022891 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b28 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b30 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a40 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022891 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a40 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b30 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022891 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b30 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022891 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022891 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022891 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022891 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022891 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a40 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022891 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022891 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022891 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022892 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022892 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022892 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022892 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022892 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022893 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022893 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022893 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022893 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022893 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022894 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022894 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022894 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022894 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022894 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022895 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022895 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022895 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022895 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022895 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022896 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022896 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022896 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022896 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022896 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022897 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022897 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022897 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022897 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022897 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022898 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022898 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022898 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022898 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022898 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022899 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022899 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022899 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022899 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022899 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289a 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289b 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022891 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022891 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a40 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002289c mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002289c 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002289c mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b30 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b38 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a48 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002289c +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a48 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b38 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002289c +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b38 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002289c +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002289c +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002289c +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002289c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002289c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a48 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289c 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289d 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289e 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a0 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a1 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a2 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a3 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a4 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a5 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a6 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002289c mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002289c mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a48 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228a7 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228a7 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228a7 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b38 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b40 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a50 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228a7 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a50 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b40 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228a7 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b40 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228a7 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228a7 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228a7 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228a7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228a7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a50 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a7 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a8 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a9 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228aa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228aa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228aa mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228aa 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228aa mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ab +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ab +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ab mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ab 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ab mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ac +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ac +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ac mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ac 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ac mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ad +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ad +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ad mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ad 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ad mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ae +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ae +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ae mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ae 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ae mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228af +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228af +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228af mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228af 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228af mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b0 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b1 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228a7 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228a7 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a50 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228b2 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228b2 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228b2 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b40 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b48 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a58 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228b2 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a58 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b48 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228b2 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b48 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228b2 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228b2 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228b2 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228b2 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228b2 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a58 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b2 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b3 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b4 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b5 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b6 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b7 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b8 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b9 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ba +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ba +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ba mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ba 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ba mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228bb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228bb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bb 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228bc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228bc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bc 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228bd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228bd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228b2 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228b2 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a58 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228bd mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228bd 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228bd mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b48 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b50 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a60 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228bd +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a60 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b50 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228bd +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b50 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228bd +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228bd +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228bd +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228bd +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228bd +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a60 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bd 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228be +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228be +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228be mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228be 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228be mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228bf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228bf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bf mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bf 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bf mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c0 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c1 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c2 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c3 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c4 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c5 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c6 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c7 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228bd mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228bd mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a60 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228c8 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228c8 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228c8 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b50 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b58 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a68 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228c8 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a68 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b58 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228c8 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b58 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228c8 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228c8 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228c8 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228c8 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228c8 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a68 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c8 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c9 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ca +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ca +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ca mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ca 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ca mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228cb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228cb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228cb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228cb 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228cb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228cc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228cc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228cc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228cc 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228cc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228cd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228cd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228cd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228cd 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228cd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ce +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ce +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ce mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ce 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ce mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228cf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228cf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228cf mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228cf 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228cf mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d0 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d1 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d2 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228c8 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228c8 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a68 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228d3 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228d3 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228d3 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b58 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b60 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a70 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228d3 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a70 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b60 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228d3 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b60 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228d3 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228d3 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228d3 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228d3 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228d3 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a70 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d3 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d4 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d5 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d6 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d7 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d8 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d9 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228da +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228da +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228da mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228da 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228da mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228db +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228db +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228db mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228db 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228db mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228dc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228dc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228dc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228dc 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228dc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228dd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228dd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228dd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228dd 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228dd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228de +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228de +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228d3 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228d3 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a70 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228de mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228de 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228de mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b60 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b68 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a78 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228de +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a78 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b68 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228de +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b68 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228de +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228de +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228de +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228de +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228de +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a78 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228de mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228de 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228de mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228df +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228df +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228df mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228df 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228df mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e0 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e1 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e2 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e3 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e4 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e5 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e6 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e7 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e8 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228de mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228de mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a78 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228e9 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228e9 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228e9 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b68 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b70 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a80 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228e9 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a80 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b70 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228e9 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b70 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228e9 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228e9 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228e9 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228e9 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228e9 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a80 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e9 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ea +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ea +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ea mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ea 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ea mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228eb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228eb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228eb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228eb 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228eb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ec +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ec +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ec mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ec 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ec mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ed +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ed +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ed mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ed 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ed mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ee +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ee +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ee mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ee 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ee mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ef +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ef +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ef mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ef 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ef mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f0 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f1 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f2 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f3 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228e9 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228e9 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a80 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228f4 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228f4 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228f4 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b70 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b78 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a88 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228f4 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a88 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b78 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228f4 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b78 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228f4 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228f4 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228f4 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228f4 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228f4 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a88 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f4 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f5 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f6 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f7 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f8 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f9 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fa mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fa 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fa mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fb 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fc 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fd 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fe +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fe +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fe mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fe 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fe mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ff +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ff +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228f4 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228f4 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a88 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228ff mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228ff 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228ff mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b78 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b80 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a90 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228ff +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b80 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228ff +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xc9c58593) addi a1, a1, -868 +core 0: 3 0x0000000080001d00 (0xc9c58593) x11 0x0000000080002998 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b80 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228ff +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228ff +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002998 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228ff +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000080002424 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000080002428 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228ff +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228ff +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a90 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b88 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002998 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xa1818a93) addi s5, gp, -1512 +core 0: 3 0x000000008000104c (0xa1818a93) x21 0x00000000800025b8 +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002998 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002999 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002999 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002999 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299a +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800026f8 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffece4 mem 0x00000000800026f8 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x3a0c0c13) addi s8, s8, 928 +core 0: 3 0x0000000080001374 (0x3a0c0c13) x24 0x0000000080002710 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ff mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ff 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ff mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022900 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022900 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x0000000080002711 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002711 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022900 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022900 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022900 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022901 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022901 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x0000000080002712 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002712 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022901 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022901 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022901 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022902 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022902 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002713 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002713 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022902 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022902 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022902 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022903 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022903 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x0000000080002714 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002714 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022903 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022903 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022903 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022904 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022904 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x0000000080002715 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002715 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022904 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022904 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022904 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022905 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022905 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x0000000080002716 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x0000000080002716 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299a +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299b +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022905 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022905 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022905 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022906 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022906 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x000000008000299b +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299c +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022906 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022906 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022906 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022907 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022907 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x000000008000299c +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x000000008000299d +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022907 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022907 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022907 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022908 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022908 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x000000008000299d +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x000000008000299e +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x000000008000299e +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x000000008000299e +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x000000008000299f +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x0000000080002700 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffed8c mem 0x0000000080002700 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022908 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022908 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022908 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022909 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022909 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x000000008000299f +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x00000000800029a0 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022909 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022909 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022909 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002290a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002290a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x00000000800029a0 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228ff mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228ff mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a90 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b88 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002290a mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002290a 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002290a mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b80 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b88 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a98 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002290a +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001d18 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d18 (0x009a0663) +core 0: 0x0000000080001d1c (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d1c (0x000a0513) x10 0x00000000800227c0 +core 0: 0x0000000080001d20 (0xbf1ff0ef) jal pc - 0x410 +core 0: 3 0x0000000080001d20 (0xbf1ff0ef) x1 0x0000000080001d24 +core 0: >>>> printstr +core 0: 0x0000000080001910 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x0000000080001910 (0x00054783) x15 0x0000000000000028 mem 0x00000000800227c0 +core 0: 0x0000000080001914 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001914 (0xf9010113) x2 0x0000000080022720 +core 0: 0x0000000080001918 (0x03f10693) addi a3, sp, 63 +core 0: 3 0x0000000080001918 (0x03f10693) x13 0x000000008002275f +core 0: 0x000000008000191c (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x000000008000191c (0xfc06f693) x13 0x0000000080022740 +core 0: 0x0000000080001920 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001920 (0x00078c63) +core 0: 0x0000000080001924 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001924 (0x00050793) x15 0x00000000800227c0 +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227c1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227c2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227c3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227c4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227c5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227c6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227c7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227c8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227c9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227ca +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ca +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227cb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227cb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227cc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227cc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227cd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227cd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227ce +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ce +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227cf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227cf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227d0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227d1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227d2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227d3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227d4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227d5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227d6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227d7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227d8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227d9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227da +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227da +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227db +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227db +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227dc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227dc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227dd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227dd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227de +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227de +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227df +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227df +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227e0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227e1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227e2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227e3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227e4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227e5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227e6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227e7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227e8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227e9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227ea +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ea +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227eb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227eb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227ec +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ec +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227ed +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ed +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227ee +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ee +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227ef +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ef +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227f0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227f1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227f2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227f3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227f4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227f5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227f6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227f7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227f8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227f9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227fa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227fb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227fc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227fd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227fe +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fe +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227ff +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ff +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022800 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022800 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022801 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022801 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022802 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022802 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022803 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022803 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022804 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022804 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022805 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022805 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022806 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022806 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022807 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022807 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022808 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022808 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022809 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022809 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002280a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002280b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002280c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002280d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002280e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002280f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022810 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022810 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022811 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022811 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022812 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022812 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022813 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022813 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022814 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022814 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022815 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022815 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022816 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022816 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022817 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022817 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022818 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022818 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022819 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022819 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002281a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002281b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002281c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002281d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002281e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002281f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022820 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022820 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022821 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022821 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022822 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022822 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022823 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022823 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022824 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022824 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022825 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022825 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022826 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022826 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022827 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022827 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022828 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022828 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022829 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022829 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002282a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002282b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002282c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002282d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002282e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002282f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022830 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022830 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022831 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022831 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022832 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022832 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022833 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022833 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022834 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022834 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022835 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022835 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022836 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022836 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022837 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022837 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022838 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022838 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022839 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022839 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002283a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002283b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002283c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002283d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002283e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002283f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022840 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022840 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022841 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022841 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022842 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022842 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022843 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022843 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022844 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022844 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022845 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022845 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022846 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022846 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022847 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022847 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022848 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022848 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022849 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022849 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002284a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002284b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002284c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002284d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002284e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002284f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022850 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022850 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022851 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022851 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022852 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022852 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022853 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022853 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022854 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022854 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022855 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022855 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022856 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022856 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022857 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022857 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022858 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022858 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022859 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022859 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002285a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002285b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002285c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002285d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002285e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002285f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022860 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022860 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022861 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022861 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022862 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022862 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022863 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022863 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022864 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022864 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022865 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022865 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022866 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022866 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022867 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022867 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022868 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022868 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022869 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022869 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002286a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002286b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002286c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002286d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002286e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002286f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022870 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022870 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022871 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022871 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022872 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022872 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022873 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022873 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022874 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022874 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022875 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022875 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022876 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022876 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022877 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022877 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022878 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022878 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022879 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022879 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002287a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002287b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002287c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002287d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002287e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002287f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022880 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022880 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022881 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022881 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022882 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022882 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022883 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022883 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022884 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022884 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022885 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022885 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022886 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022886 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022887 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022887 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022888 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022888 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022889 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022889 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002288a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002288b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002288c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002288d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002288e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002288f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022890 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022890 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022891 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022891 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022892 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022892 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022893 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022893 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022894 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022894 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022895 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022895 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022896 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022896 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022897 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022897 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022898 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022898 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022899 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022899 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002289a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002289b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002289c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002289d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002289e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002289f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228a0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228a1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228a2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228a3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228a4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228a5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228a6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228a7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228a8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228a9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228aa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228aa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228ab +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ab +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228ac +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ac +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228ad +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ad +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228ae +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ae +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228af +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228af +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228b0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228b1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228b2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228b3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228b4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228b5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228b6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228b7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228b8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228b9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228ba +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ba +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228bb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228bb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228bc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228bc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228bd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228bd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228be +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228be +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228bf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228bf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228c0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228c1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228c2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228c3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228c4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228c5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228c6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228c7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228c8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228c9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228ca +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ca +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228cb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228cb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228cc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228cc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228cd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228cd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228ce +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ce +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228cf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228cf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228d0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228d1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228d2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228d3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228d4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228d5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228d6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228d7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228d8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228d9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228da +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228da +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228db +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228db +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228dc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228dc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228dd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228dd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228de +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228de +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228df +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228df +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228e0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228e1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228e2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228e3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228e4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228e5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228e6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228e7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228e8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228e9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228ea +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ea +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228eb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228eb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228ec +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ec +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228ed +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ed +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228ee +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ee +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228ef +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ef +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228f0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228f1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228f2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228f3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228f4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228f5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228f6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228f7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228f8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228f9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228fa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228fb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228fc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228fd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228fe +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fe +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228ff +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ff +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022900 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022900 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022901 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022901 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022902 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022902 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022903 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022903 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022904 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022904 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022905 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022905 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022906 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022906 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022907 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022907 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022908 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022908 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022909 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022909 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000000 mem 0x000000008002290a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002290a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001934 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x0000000080001934 (0x40a787b3) x15 0x000000000000014a +core 0: 0x0000000080001938 (0x04000713) li a4, 64 +core 0: 3 0x0000000080001938 (0x04000713) x14 0x0000000000000040 +core 0: 0x000000008000193c (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x000000008000193c (0x00e6b023) mem 0x0000000080022740 0x0000000000000040 +core 0: 0x0000000080001940 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001940 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001944 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x0000000080001944 (0x00e6b423) mem 0x0000000080022748 0x0000000000000001 +core 0: 0x0000000080001948 (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x0000000080001948 (0x00a6b823) mem 0x0000000080022750 0x00000000800227c0 +core 0: 0x000000008000194c (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x000000008000194c (0x00f6bc23) mem 0x0000000080022758 0x000000000000014a +core 0: 0x0000000080001950 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001950 (0x0330000f) +core 0: 0x0000000080001954 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001954 (0xbfffe717) x14 0x000000003ffff954 +core 0: 0x0000000080001958 (0x6ec70713) addi a4, a4, 1772 +core 0: 3 0x0000000080001958 (0x6ec70713) x14 0x0000000040000040 +core 0: 0x000000008000195c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000195c (0xbfffe797) x15 0x000000003ffff95c +core 0: 0x0000000080001960 (0x6ad7b223) sd a3, 1700(a5) +core 0: 3 0x0000000080001960 (0x6ad7b223) mem 0x0000000040000000 0x0000000080022740 +core 0: 0x0000000080001964 (0x00073783) ld a5, 0(a4) +core 0: 3 0x0000000080001964 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x0000000080001968 (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x0000000080001968 (0xfe078ee3) +core 0: 0x000000008000196c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000196c (0xbfffe797) x15 0x000000003ffff96c +core 0: 0x0000000080001970 (0x6c07ba23) sd zero, 1748(a5) +core 0: 3 0x0000000080001970 (0x6c07ba23) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x0000000080001974 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001974 (0x0330000f) +core 0: 0x0000000080001978 (0x0006b783) ld a5, 0(a3) +core 0: 3 0x0000000080001978 (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022740 +core 0: 0x000000008000197c (0x07010113) addi sp, sp, 112 +core 0: 3 0x000000008000197c (0x07010113) x2 0x0000000080022790 +core 0: 0x0000000080001980 (0x00008067) ret +core 0: 3 0x0000000080001980 (0x00008067) +core 0: 0x0000000080001d24 (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d24 (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d28 (0xba5ff0ef) jal pc - 0x45c +core 0: 3 0x0000000080001d28 (0xba5ff0ef) x1 0x0000000080001d2c +core 0: >>>> tohost_exit +core 0: 0x00000000800018cc (0x00151793) slli a5, a0, 1 +core 0: 3 0x00000000800018cc (0x00151793) x15 0x0000000000000000 +core 0: 0x00000000800018d0 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x00000000800018d0 (0x0017e793) x15 0x0000000000000001 +core 0: 0x00000000800018d4 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x00000000800018d4 (0xbfffe717) x14 0x000000003ffff8d4 +core 0: 0x00000000800018d8 (0x72f73623) sd a5, 1836(a4) +core 0: 3 0x00000000800018d8 (0x72f73623) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x00000000800018dc (0x0000006f) j pc + 0x0 +core 0: 3 0x00000000800018dc (0x0000006f) diff --git a/traces/without_zfhmin.txt b/traces/without_zfhmin.txt new file mode 100644 index 0000000..44db04a --- /dev/null +++ b/traces/without_zfhmin.txt @@ -0,0 +1,23057 @@ +core 0: 0x0000000000000100 (0x0010041b) addiw s0, zero, 1 +core 0: 3 0x0000000000000100 (0x0010041b) x8 0x0000000000000001 +core 0: 0x0000000000000104 (0x01f41413) slli s0, s0, 31 +core 0: 3 0x0000000000000104 (0x01f41413) x8 0x0000000080000000 +core 0: 0x0000000000000108 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000000000108 (0xf1402573) x10 0x0000000000000000 +core 0: 0x000000000000010c (0x18000593) li a1, 384 +core 0: 3 0x000000000000010c (0x18000593) x11 0x0000000000000180 +core 0: 0x0000000000000110 (0x00040067) jr s0 +core 0: 3 0x0000000000000110 (0x00040067) +core 0: >>>> _start +core 0: 0x0000000080000000 (0x00000093) li ra, 0 +core 0: 3 0x0000000080000000 (0x00000093) x1 0x0000000000000000 +core 0: 0x0000000080000004 (0x00000113) li sp, 0 +core 0: 3 0x0000000080000004 (0x00000113) x2 0x0000000000000000 +core 0: 0x0000000080000008 (0x00000193) li gp, 0 +core 0: 3 0x0000000080000008 (0x00000193) x3 0x0000000000000000 +core 0: 0x000000008000000c (0x00000213) li tp, 0 +core 0: 3 0x000000008000000c (0x00000213) x4 0x0000000000000000 +core 0: 0x0000000080000010 (0x00000293) li t0, 0 +core 0: 3 0x0000000080000010 (0x00000293) x5 0x0000000000000000 +core 0: 0x0000000080000014 (0x00000313) li t1, 0 +core 0: 3 0x0000000080000014 (0x00000313) x6 0x0000000000000000 +core 0: 0x0000000080000018 (0x00000393) li t2, 0 +core 0: 3 0x0000000080000018 (0x00000393) x7 0x0000000000000000 +core 0: 0x000000008000001c (0x00000413) li s0, 0 +core 0: 3 0x000000008000001c (0x00000413) x8 0x0000000000000000 +core 0: 0x0000000080000020 (0x00000493) li s1, 0 +core 0: 3 0x0000000080000020 (0x00000493) x9 0x0000000000000000 +core 0: 0x0000000080000024 (0x00000513) li a0, 0 +core 0: 3 0x0000000080000024 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080000028 (0x00000593) li a1, 0 +core 0: 3 0x0000000080000028 (0x00000593) x11 0x0000000000000000 +core 0: 0x000000008000002c (0x00000613) li a2, 0 +core 0: 3 0x000000008000002c (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080000030 (0x00000693) li a3, 0 +core 0: 3 0x0000000080000030 (0x00000693) x13 0x0000000000000000 +core 0: 0x0000000080000034 (0x00000713) li a4, 0 +core 0: 3 0x0000000080000034 (0x00000713) x14 0x0000000000000000 +core 0: 0x0000000080000038 (0x00000793) li a5, 0 +core 0: 3 0x0000000080000038 (0x00000793) x15 0x0000000000000000 +core 0: 0x000000008000003c (0x00000813) li a6, 0 +core 0: 3 0x000000008000003c (0x00000813) x16 0x0000000000000000 +core 0: 0x0000000080000040 (0x00000893) li a7, 0 +core 0: 3 0x0000000080000040 (0x00000893) x17 0x0000000000000000 +core 0: 0x0000000080000044 (0x00000913) li s2, 0 +core 0: 3 0x0000000080000044 (0x00000913) x18 0x0000000000000000 +core 0: 0x0000000080000048 (0x00000993) li s3, 0 +core 0: 3 0x0000000080000048 (0x00000993) x19 0x0000000000000000 +core 0: 0x000000008000004c (0x00000a13) li s4, 0 +core 0: 3 0x000000008000004c (0x00000a13) x20 0x0000000000000000 +core 0: 0x0000000080000050 (0x00000a93) li s5, 0 +core 0: 3 0x0000000080000050 (0x00000a93) x21 0x0000000000000000 +core 0: 0x0000000080000054 (0x00000b13) li s6, 0 +core 0: 3 0x0000000080000054 (0x00000b13) x22 0x0000000000000000 +core 0: 0x0000000080000058 (0x00000b93) li s7, 0 +core 0: 3 0x0000000080000058 (0x00000b93) x23 0x0000000000000000 +core 0: 0x000000008000005c (0x00000c13) li s8, 0 +core 0: 3 0x000000008000005c (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080000060 (0x00000c93) li s9, 0 +core 0: 3 0x0000000080000060 (0x00000c93) x25 0x0000000000000000 +core 0: 0x0000000080000064 (0x00000d13) li s10, 0 +core 0: 3 0x0000000080000064 (0x00000d13) x26 0x0000000000000000 +core 0: 0x0000000080000068 (0x00000d93) li s11, 0 +core 0: 3 0x0000000080000068 (0x00000d93) x27 0x0000000000000000 +core 0: 0x000000008000006c (0x00000e13) li t3, 0 +core 0: 3 0x000000008000006c (0x00000e13) x28 0x0000000000000000 +core 0: 0x0000000080000070 (0x00000e93) li t4, 0 +core 0: 3 0x0000000080000070 (0x00000e93) x29 0x0000000000000000 +core 0: 0x0000000080000074 (0x00000f13) li t5, 0 +core 0: 3 0x0000000080000074 (0x00000f13) x30 0x0000000000000000 +core 0: 0x0000000080000078 (0x00000f93) li t6, 0 +core 0: 3 0x0000000080000078 (0x00000f93) x31 0x0000000000000000 +core 0: 0x000000008000007c (0x0001e2b7) lui t0, 0x1e +core 0: 3 0x000000008000007c (0x0001e2b7) x5 0x000000000001e000 +core 0: 0x0000000080000080 (0x6002829b) addiw t0, t0, 1536 +core 0: 3 0x0000000080000080 (0x6002829b) x5 0x000000000001e600 +core 0: 0x0000000080000084 (0x3002a073) csrs mstatus, t0 +core 0: 3 0x0000000080000084 (0x3002a073) c768_mstatus 0x8000000a00006000 +core 0: 0x0000000080000088 (0x00100293) li t0, 1 +core 0: 3 0x0000000080000088 (0x00100293) x5 0x0000000000000001 +core 0: 0x000000008000008c (0x01f29293) slli t0, t0, 31 +core 0: 3 0x000000008000008c (0x01f29293) x5 0x0000000080000000 +core 0: 0x0000000080000090 (0x0002da63) bgez t0, pc + 20 +core 0: 3 0x0000000080000090 (0x0002da63) +core 0: 0x00000000800000a4 (0x00000297) auipc t0, 0x0 +core 0: 3 0x00000000800000a4 (0x00000297) x5 0x00000000800000a4 +core 0: 0x00000000800000a8 (0x09028293) addi t0, t0, 144 +core 0: 3 0x00000000800000a8 (0x09028293) x5 0x0000000080000134 +core 0: 0x00000000800000ac (0x30529073) csrw mtvec, t0 +core 0: 3 0x00000000800000ac (0x30529073) c773_mtvec 0x0000000080000134 +core 0: 0x00000000800000b0 (0x00301073) csrw fcsr, zero +core 0: 3 0x00000000800000b0 (0x00301073) c1_fflags 0x0000000000000000 c2_frm 0x0000000000000000 +core 0: 0x00000000800000b4 (0xf0000053) fmv.w.x ft0, zero +core 0: 3 0x00000000800000b4 (0xf0000053) f0 0xffffffff00000000 +core 0: 0x00000000800000b8 (0xf00000d3) fmv.w.x ft1, zero +core 0: 3 0x00000000800000b8 (0xf00000d3) f1 0xffffffff00000000 +core 0: 0x00000000800000bc (0xf0000153) fmv.w.x ft2, zero +core 0: 3 0x00000000800000bc (0xf0000153) f2 0xffffffff00000000 +core 0: 0x00000000800000c0 (0xf00001d3) fmv.w.x ft3, zero +core 0: 3 0x00000000800000c0 (0xf00001d3) f3 0xffffffff00000000 +core 0: 0x00000000800000c4 (0xf0000253) fmv.w.x ft4, zero +core 0: 3 0x00000000800000c4 (0xf0000253) f4 0xffffffff00000000 +core 0: 0x00000000800000c8 (0xf00002d3) fmv.w.x ft5, zero +core 0: 3 0x00000000800000c8 (0xf00002d3) f5 0xffffffff00000000 +core 0: 0x00000000800000cc (0xf0000353) fmv.w.x ft6, zero +core 0: 3 0x00000000800000cc (0xf0000353) f6 0xffffffff00000000 +core 0: 0x00000000800000d0 (0xf00003d3) fmv.w.x ft7, zero +core 0: 3 0x00000000800000d0 (0xf00003d3) f7 0xffffffff00000000 +core 0: 0x00000000800000d4 (0xf0000453) fmv.w.x fs0, zero +core 0: 3 0x00000000800000d4 (0xf0000453) f8 0xffffffff00000000 +core 0: 0x00000000800000d8 (0xf00004d3) fmv.w.x fs1, zero +core 0: 3 0x00000000800000d8 (0xf00004d3) f9 0xffffffff00000000 +core 0: 0x00000000800000dc (0xf0000553) fmv.w.x fa0, zero +core 0: 3 0x00000000800000dc (0xf0000553) f10 0xffffffff00000000 +core 0: 0x00000000800000e0 (0xf00005d3) fmv.w.x fa1, zero +core 0: 3 0x00000000800000e0 (0xf00005d3) f11 0xffffffff00000000 +core 0: 0x00000000800000e4 (0xf0000653) fmv.w.x fa2, zero +core 0: 3 0x00000000800000e4 (0xf0000653) f12 0xffffffff00000000 +core 0: 0x00000000800000e8 (0xf00006d3) fmv.w.x fa3, zero +core 0: 3 0x00000000800000e8 (0xf00006d3) f13 0xffffffff00000000 +core 0: 0x00000000800000ec (0xf0000753) fmv.w.x fa4, zero +core 0: 3 0x00000000800000ec (0xf0000753) f14 0xffffffff00000000 +core 0: 0x00000000800000f0 (0xf00007d3) fmv.w.x fa5, zero +core 0: 3 0x00000000800000f0 (0xf00007d3) f15 0xffffffff00000000 +core 0: 0x00000000800000f4 (0xf0000853) fmv.w.x fa6, zero +core 0: 3 0x00000000800000f4 (0xf0000853) f16 0xffffffff00000000 +core 0: 0x00000000800000f8 (0xf00008d3) fmv.w.x fa7, zero +core 0: 3 0x00000000800000f8 (0xf00008d3) f17 0xffffffff00000000 +core 0: 0x00000000800000fc (0xf0000953) fmv.w.x fs2, zero +core 0: 3 0x00000000800000fc (0xf0000953) f18 0xffffffff00000000 +core 0: 0x0000000080000100 (0xf00009d3) fmv.w.x fs3, zero +core 0: 3 0x0000000080000100 (0xf00009d3) f19 0xffffffff00000000 +core 0: 0x0000000080000104 (0xf0000a53) fmv.w.x fs4, zero +core 0: 3 0x0000000080000104 (0xf0000a53) f20 0xffffffff00000000 +core 0: 0x0000000080000108 (0xf0000ad3) fmv.w.x fs5, zero +core 0: 3 0x0000000080000108 (0xf0000ad3) f21 0xffffffff00000000 +core 0: 0x000000008000010c (0xf0000b53) fmv.w.x fs6, zero +core 0: 3 0x000000008000010c (0xf0000b53) f22 0xffffffff00000000 +core 0: 0x0000000080000110 (0xf0000bd3) fmv.w.x fs7, zero +core 0: 3 0x0000000080000110 (0xf0000bd3) f23 0xffffffff00000000 +core 0: 0x0000000080000114 (0xf0000c53) fmv.w.x fs8, zero +core 0: 3 0x0000000080000114 (0xf0000c53) f24 0xffffffff00000000 +core 0: 0x0000000080000118 (0xf0000cd3) fmv.w.x fs9, zero +core 0: 3 0x0000000080000118 (0xf0000cd3) f25 0xffffffff00000000 +core 0: 0x000000008000011c (0xf0000d53) fmv.w.x fs10, zero +core 0: 3 0x000000008000011c (0xf0000d53) f26 0xffffffff00000000 +core 0: 0x0000000080000120 (0xf0000dd3) fmv.w.x fs11, zero +core 0: 3 0x0000000080000120 (0xf0000dd3) f27 0xffffffff00000000 +core 0: 0x0000000080000124 (0xf0000e53) fmv.w.x ft8, zero +core 0: 3 0x0000000080000124 (0xf0000e53) f28 0xffffffff00000000 +core 0: 0x0000000080000128 (0xf0000ed3) fmv.w.x ft9, zero +core 0: 3 0x0000000080000128 (0xf0000ed3) f29 0xffffffff00000000 +core 0: 0x000000008000012c (0xf0000f53) fmv.w.x ft10, zero +core 0: 3 0x000000008000012c (0xf0000f53) f30 0xffffffff00000000 +core 0: 0x0000000080000130 (0xf0000fd3) fmv.w.x ft11, zero +core 0: 3 0x0000000080000130 (0xf0000fd3) f31 0xffffffff00000000 +core 0: 0x0000000080000134 (0x00000297) auipc t0, 0x0 +core 0: 3 0x0000000080000134 (0x00000297) x5 0x0000000080000134 +core 0: 0x0000000080000138 (0x04428293) addi t0, t0, 68 +core 0: 3 0x0000000080000138 (0x04428293) x5 0x0000000080000178 +core 0: 0x000000008000013c (0x30529073) csrw mtvec, t0 +core 0: 3 0x000000008000013c (0x30529073) c773_mtvec 0x0000000080000178 +core 0: 0x0000000080000140 (0x00003197) auipc gp, 0x3 +core 0: 3 0x0000000080000140 (0x00003197) x3 0x0000000080003140 +core 0: 0x0000000080000144 (0xc7818193) addi gp, gp, -904 +core 0: 3 0x0000000080000144 (0xc7818193) x3 0x0000000080002db8 +core 0: 0x0000000080000148 (0x00003217) auipc tp, 0x3 +core 0: 3 0x0000000080000148 (0x00003217) x4 0x0000000080003148 +core 0: 0x000000008000014c (0xab720213) addi tp, tp, -1353 +core 0: 3 0x000000008000014c (0xab720213) x4 0x0000000080002bff +core 0: 0x0000000080000150 (0xfc027213) andi tp, tp, -64 +core 0: 3 0x0000000080000150 (0xfc027213) x4 0x0000000080002bc0 +core 0: 0x0000000080000154 (0xf1402573) csrr a0, mhartid +core 0: 3 0x0000000080000154 (0xf1402573) x10 0x0000000000000000 +core 0: 0x0000000080000158 (0x00100593) li a1, 1 +core 0: 3 0x0000000080000158 (0x00100593) x11 0x0000000000000001 +core 0: 0x000000008000015c (0x00b57063) bgeu a0, a1, pc + 0 +core 0: 3 0x000000008000015c (0x00b57063) +core 0: 0x0000000080000160 (0x00150113) addi sp, a0, 1 +core 0: 3 0x0000000080000160 (0x00150113) x2 0x0000000000000001 +core 0: 0x0000000080000164 (0x01111113) slli sp, sp, 17 +core 0: 3 0x0000000080000164 (0x01111113) x2 0x0000000000020000 +core 0: 0x0000000080000168 (0x00410133) add sp, sp, tp +core 0: 3 0x0000000080000168 (0x00410133) x2 0x0000000080022bc0 +core 0: 0x000000008000016c (0x01151613) slli a2, a0, 17 +core 0: 3 0x000000008000016c (0x01151613) x12 0x0000000000000000 +core 0: 0x0000000080000170 (0x00c20233) add tp, tp, a2 +core 0: 3 0x0000000080000170 (0x00c20233) x4 0x0000000080002bc0 +core 0: 0x0000000080000174 (0x2690106f) j pc + 0x1a68 +core 0: 3 0x0000000080000174 (0x2690106f) +core 0: >>>> _init +core 0: 0x0000000080001bdc (0xbd010113) addi sp, sp, -1072 +core 0: 3 0x0000000080001bdc (0xbd010113) x2 0x0000000080022790 +core 0: 0x0000000080001be0 (0xde018613) addi a2, gp, -544 +core 0: 3 0x0000000080001be0 (0xde018613) x12 0x0000000080002b98 +core 0: 0x0000000080001be4 (0xde018793) addi a5, gp, -544 +core 0: 3 0x0000000080001be4 (0xde018793) x15 0x0000000080002b98 +core 0: 0x0000000080001be8 (0x41413023) sd s4, 1024(sp) +core 0: 3 0x0000000080001be8 (0x41413023) mem 0x0000000080022b90 0x0000000000000000 +core 0: 0x0000000080001bec (0x40f60833) sub a6, a2, a5 +core 0: 3 0x0000000080001bec (0x40f60833) x16 0x0000000000000000 +core 0: 0x0000000080001bf0 (0x03f10a13) addi s4, sp, 63 +core 0: 3 0x0000000080001bf0 (0x03f10a13) x20 0x00000000800227cf +core 0: 0x0000000080001bf4 (0x42813023) sd s0, 1056(sp) +core 0: 3 0x0000000080001bf4 (0x42813023) mem 0x0000000080022bb0 0x0000000000000000 +core 0: 0x0000000080001bf8 (0x40913c23) sd s1, 1048(sp) +core 0: 3 0x0000000080001bf8 (0x40913c23) mem 0x0000000080022ba8 0x0000000000000000 +core 0: 0x0000000080001bfc (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001bfc (0x00050413) x8 0x0000000000000000 +core 0: 0x0000000080001c00 (0x00058493) mv s1, a1 +core 0: 3 0x0000000080001c00 (0x00058493) x9 0x0000000000000001 +core 0: 0x0000000080001c04 (0x42113423) sd ra, 1064(sp) +core 0: 3 0x0000000080001c04 (0x42113423) mem 0x0000000080022bb8 0x0000000000000000 +core 0: 0x0000000080001c08 (0x41213823) sd s2, 1040(sp) +core 0: 3 0x0000000080001c08 (0x41213823) mem 0x0000000080022ba0 0x0000000000000000 +core 0: 0x0000000080001c0c (0x41313423) sd s3, 1032(sp) +core 0: 3 0x0000000080001c0c (0x41313423) mem 0x0000000080022b98 0x0000000000000000 +core 0: 0x0000000080001c10 (0x3f513c23) sd s5, 1016(sp) +core 0: 3 0x0000000080001c10 (0x3f513c23) mem 0x0000000080022b88 0x0000000000000000 +core 0: 0x0000000080001c14 (0x00080593) mv a1, a6 +core 0: 3 0x0000000080001c14 (0x00080593) x11 0x0000000000000000 +core 0: 0x0000000080001c18 (0xfc0a7a13) andi s4, s4, -64 +core 0: 3 0x0000000080001c18 (0xfc0a7a13) x20 0x00000000800227c0 +core 0: 0x0000000080001c1c (0x00020513) mv a0, tp +core 0: 3 0x0000000080001c1c (0x00020513) x10 0x0000000080002bc0 +core 0: 0x0000000080001c20 (0x00020693) mv a3, tp +core 0: 3 0x0000000080001c20 (0x00020693) x13 0x0000000080002bc0 +core 0: 0x0000000080001c24 (0x0c05f757) vsetvli a4, a1, e8, m1, ta, ma +core 0: 3 0x0000000080001c24 (0x0c05f757) x14 0x0000000000000000 +core 0: 0x0000000080001c28 (0x02078087) vle8.v v1, (a5) +core 0: 3 0x0000000080001c28 (0x02078087) mem 0x0000000000000000 +core 0: 0x0000000080001c2c (0x40e585b3) sub a1, a1, a4 +core 0: 3 0x0000000080001c2c (0x40e585b3) x11 0x0000000000000000 +core 0: 0x0000000080001c30 (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001c30 (0x00e787b3) x15 0x0000000080002b98 +core 0: 0x0000000080001c34 (0x020680a7) vse8.v v1, (a3) +core 0: 3 0x0000000080001c34 (0x020680a7) mem 0x0000000000000000 0x00 +core 0: 0x0000000080001c38 (0x00e686b3) add a3, a3, a4 +core 0: 3 0x0000000080001c38 (0x00e686b3) x13 0x0000000080002bc0 +core 0: 0x0000000080001c3c (0xfe0594e3) bnez a1, pc - 24 +core 0: 3 0x0000000080001c3c (0xfe0594e3) +core 0: 0x0000000080001c40 (0x00001797) auipc a5, 0x1 +core 0: 3 0x0000000080001c40 (0x00001797) x15 0x0000000080002c40 +core 0: 0x0000000080001c44 (0xfc478793) addi a5, a5, -60 +core 0: 3 0x0000000080001c44 (0xfc478793) x15 0x0000000080002c04 +core 0: 0x0000000080001c48 (0x01050533) add a0, a0, a6 +core 0: 3 0x0000000080001c48 (0x01050533) x10 0x0000000080002bc0 +core 0: 0x0000000080001c4c (0x40c78633) sub a2, a5, a2 +core 0: 3 0x0000000080001c4c (0x40c78633) x12 0x000000000000006c +core 0: 0x0000000080001c50 (0xf21ff0ef) jal pc - 0xe0 +core 0: 3 0x0000000080001c50 (0xf21ff0ef) x1 0x0000000080001c54 +core 0: >>>> memset +core 0: 0x0000000080001b70 (0x00c567b3) or a5, a0, a2 +core 0: 3 0x0000000080001b70 (0x00c567b3) x15 0x0000000080002bec +core 0: 0x0000000080001b74 (0x0077f793) andi a5, a5, 7 +core 0: 3 0x0000000080001b74 (0x0077f793) x15 0x0000000000000004 +core 0: 0x0000000080001b78 (0x00c50733) add a4, a0, a2 +core 0: 3 0x0000000080001b78 (0x00c50733) x14 0x0000000080002c2c +core 0: 0x0000000080001b7c (0x02078663) beqz a5, pc + 44 +core 0: 3 0x0000000080001b7c (0x02078663) +core 0: 0x0000000080001b80 (0x0c0077d7) vsetvli a5, zero, e8, m1, ta, ma +core 0: 3 0x0000000080001b80 (0x0c0077d7) x15 0x0000000000000010 +core 0: 0x0000000080001b84 (0x5e05c0d7) vmv.v.x v1, a1 +core 0: 3 0x0000000080001b84 (0x5e05c0d7) e8 m1 l10 v1 0x00000000000000000000000000000000 +core 0: 0x0000000080001b88 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001b88 (0x00050793) x15 0x0000000080002bc0 +core 0: 0x0000000080001b8c (0x04e57663) bgeu a0, a4, pc + 76 +core 0: 3 0x0000000080001b8c (0x04e57663) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002bc0 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000005c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002bd0 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002bd0 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000004c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002be0 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002be0 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000003c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002bf0 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002bf0 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000002c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002c00 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x0000000000000010 +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002c00 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000001c +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002c10 +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x000000000000000e +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002c1c 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x000000000000000e +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002c1e +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001b90 (0x0c067757) vsetvli a4, a2, e8, m1, ta, ma +core 0: 3 0x0000000080001b90 (0x0c067757) x14 0x000000000000000e +core 0: 0x0000000080001b94 (0x020780a7) vse8.v v1, (a5) +core 0: 3 0x0000000080001b94 (0x020780a7) mem 0x0000000080002c28 0x00 +core 0: 0x0000000080001b98 (0x40e60633) sub a2, a2, a4 +core 0: 3 0x0000000080001b98 (0x40e60633) x12 0x0000000000000000 +core 0: 0x0000000080001b9c (0x00e787b3) add a5, a5, a4 +core 0: 3 0x0000000080001b9c (0x00e787b3) x15 0x0000000080002c2c +core 0: 0x0000000080001ba0 (0xfe0618e3) bnez a2, pc - 16 +core 0: 3 0x0000000080001ba0 (0xfe0618e3) +core 0: 0x0000000080001ba4 (0x00008067) ret +core 0: 3 0x0000000080001ba4 (0x00008067) +core 0: 0x0000000080001c54 (0x00048593) mv a1, s1 +core 0: 3 0x0000000080001c54 (0x00048593) x11 0x0000000000000001 +core 0: 0x0000000080001c58 (0x00040513) mv a0, s0 +core 0: 3 0x0000000080001c58 (0x00040513) x10 0x0000000000000000 +core 0: 0x0000000080001c5c (0xd29ff0ef) jal pc - 0x2d8 +core 0: 3 0x0000000080001c5c (0xd29ff0ef) x1 0x0000000080001c60 +core 0: >>>> thread_entry +core 0: 0x0000000080001984 (0x00051463) bnez a0, pc + 8 +core 0: 3 0x0000000080001984 (0x00051463) +core 0: 0x0000000080001988 (0x00008067) ret +core 0: 3 0x0000000080001988 (0x00008067) +core 0: 0x0000000080001c60 (0x3230d073) csrwi mhpmevent3, 1 +core 0: 3 0x0000000080001c60 (0x3230d073) c803_mhpmevent3 0x0000000000000001 +core 0: 0x0000000080001c64 (0x32415073) csrwi mhpmevent4, 2 +core 0: 3 0x0000000080001c64 (0x32415073) c804_mhpmevent4 0x0000000000000002 +core 0: 0x0000000080001c68 (0x3251d073) csrwi mhpmevent5, 3 +core 0: 3 0x0000000080001c68 (0x3251d073) c805_mhpmevent5 0x0000000000000003 +core 0: 0x0000000080001c6c (0x32625073) csrwi mhpmevent6, 4 +core 0: 3 0x0000000080001c6c (0x32625073) c806_mhpmevent6 0x0000000000000004 +core 0: 0x0000000080001c70 (0x3272d073) csrwi mhpmevent7, 5 +core 0: 3 0x0000000080001c70 (0x3272d073) c807_mhpmevent7 0x0000000000000005 +core 0: 0x0000000080001c74 (0x32835073) csrwi mhpmevent8, 6 +core 0: 3 0x0000000080001c74 (0x32835073) c808_mhpmevent8 0x0000000000000006 +core 0: 0x0000000080001c78 (0x3293d073) csrwi mhpmevent9, 7 +core 0: 3 0x0000000080001c78 (0x3293d073) c809_mhpmevent9 0x0000000000000007 +core 0: 0x0000000080001c7c (0x32a45073) csrwi mhpmevent10, 8 +core 0: 3 0x0000000080001c7c (0x32a45073) c810_mhpmevent10 0x0000000000000008 +core 0: 0x0000000080001c80 (0x32b4d073) csrwi mhpmevent11, 9 +core 0: 3 0x0000000080001c80 (0x32b4d073) c811_mhpmevent11 0x0000000000000009 +core 0: 0x0000000080001c84 (0x32c55073) csrwi mhpmevent12, 10 +core 0: 3 0x0000000080001c84 (0x32c55073) c812_mhpmevent12 0x000000000000000a +core 0: 0x0000000080001c88 (0x32d5d073) csrwi mhpmevent13, 11 +core 0: 3 0x0000000080001c88 (0x32d5d073) c813_mhpmevent13 0x000000000000000b +core 0: 0x0000000080001c8c (0x32e65073) csrwi mhpmevent14, 12 +core 0: 3 0x0000000080001c8c (0x32e65073) c814_mhpmevent14 0x000000000000000c +core 0: 0x0000000080001c90 (0x32f6d073) csrwi mhpmevent15, 13 +core 0: 3 0x0000000080001c90 (0x32f6d073) c815_mhpmevent15 0x000000000000000d +core 0: 0x0000000080001c94 (0x33075073) csrwi mhpmevent16, 14 +core 0: 3 0x0000000080001c94 (0x33075073) c816_mhpmevent16 0x000000000000000e +core 0: 0x0000000080001c98 (0x3317d073) csrwi mhpmevent17, 15 +core 0: 3 0x0000000080001c98 (0x3317d073) c817_mhpmevent17 0x000000000000000f +core 0: 0x0000000080001c9c (0x33285073) csrwi mhpmevent18, 16 +core 0: 3 0x0000000080001c9c (0x33285073) c818_mhpmevent18 0x0000000000000010 +core 0: 0x0000000080001ca0 (0x3338d073) csrwi mhpmevent19, 17 +core 0: 3 0x0000000080001ca0 (0x3338d073) c819_mhpmevent19 0x0000000000000011 +core 0: 0x0000000080001ca4 (0x33495073) csrwi mhpmevent20, 18 +core 0: 3 0x0000000080001ca4 (0x33495073) c820_mhpmevent20 0x0000000000000012 +core 0: 0x0000000080001ca8 (0x3359d073) csrwi mhpmevent21, 19 +core 0: 3 0x0000000080001ca8 (0x3359d073) c821_mhpmevent21 0x0000000000000013 +core 0: 0x0000000080001cac (0x336a5073) csrwi mhpmevent22, 20 +core 0: 3 0x0000000080001cac (0x336a5073) c822_mhpmevent22 0x0000000000000014 +core 0: 0x0000000080001cb0 (0x337ad073) csrwi mhpmevent23, 21 +core 0: 3 0x0000000080001cb0 (0x337ad073) c823_mhpmevent23 0x0000000000000015 +core 0: 0x0000000080001cb4 (0x338b5073) csrwi mhpmevent24, 22 +core 0: 3 0x0000000080001cb4 (0x338b5073) c824_mhpmevent24 0x0000000000000016 +core 0: 0x0000000080001cb8 (0x339bd073) csrwi mhpmevent25, 23 +core 0: 3 0x0000000080001cb8 (0x339bd073) c825_mhpmevent25 0x0000000000000017 +core 0: 0x0000000080001cbc (0x33ac5073) csrwi mhpmevent26, 24 +core 0: 3 0x0000000080001cbc (0x33ac5073) c826_mhpmevent26 0x0000000000000018 +core 0: 0x0000000080001cc0 (0x33bcd073) csrwi mhpmevent27, 25 +core 0: 3 0x0000000080001cc0 (0x33bcd073) c827_mhpmevent27 0x0000000000000019 +core 0: 0x0000000080001cc4 (0x33cd5073) csrwi mhpmevent28, 26 +core 0: 3 0x0000000080001cc4 (0x33cd5073) c828_mhpmevent28 0x000000000000001a +core 0: 0x0000000080001cc8 (0x33ddd073) csrwi mhpmevent29, 27 +core 0: 3 0x0000000080001cc8 (0x33ddd073) c829_mhpmevent29 0x000000000000001b +core 0: 0x0000000080001ccc (0x33ee5073) csrwi mhpmevent30, 28 +core 0: 3 0x0000000080001ccc (0x33ee5073) c830_mhpmevent30 0x000000000000001c +core 0: 0x0000000080001cd0 (0x00000593) li a1, 0 +core 0: 3 0x0000000080001cd0 (0x00000593) x11 0x0000000000000000 +core 0: 0x0000000080001cd4 (0x00000513) li a0, 0 +core 0: 3 0x0000000080001cd4 (0x00000513) x10 0x0000000000000000 +core 0: 0x0000000080001cd8 (0x7b4000ef) jal pc + 0x7b4 +core 0: 3 0x0000000080001cd8 (0x7b4000ef) x1 0x0000000080001cdc +core 0: >>>> main +core 0: 0x000000008000248c (0x00000797) auipc a5, 0x0 +core 0: 3 0x000000008000248c (0x00000797) x15 0x000000008000248c +core 0: 0x0000000080002490 (0x13878793) addi a5, a5, 312 +core 0: 3 0x0000000080002490 (0x13878793) x15 0x00000000800025c4 +core 0: 0x0000000080002494 (0x0007d783) lhu a5, 0(a5) +core 0: 3 0x0000000080002494 (0x0007d783) x15 0x0000000000004280 mem 0x00000000800025c4 +core 0: 0x0000000080002498 (0xfc010113) addi sp, sp, -64 +core 0: 3 0x0000000080002498 (0xfc010113) x2 0x0000000080022750 +core 0: 0x000000008000249c (0x02113c23) sd ra, 56(sp) +core 0: 3 0x000000008000249c (0x02113c23) mem 0x0000000080022788 0x0000000080001cdc +core 0: 0x00000000800024a0 (0x02813823) sd s0, 48(sp) +core 0: 3 0x00000000800024a0 (0x02813823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x00000000800024a4 (0x02913423) sd s1, 40(sp) +core 0: 3 0x00000000800024a4 (0x02913423) mem 0x0000000080022778 0x0000000000000001 +core 0: 0x00000000800024a8 (0x00f11323) sh a5, 6(sp) +core 0: 3 0x00000000800024a8 (0x00f11323) mem 0x0000000080022756 0x4280 +core 0: 0x00000000800024ac (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800024ac (0xc00027f3) x15 0x0000000000000420 +core 0: 0x00000000800024b0 (0x00a00413) li s0, 10 +core 0: 3 0x00000000800024b0 (0x00a00413) x8 0x000000000000000a +core 0: 0x00000000800024b4 (0xffff04b7) lui s1, 0xffff0 +core 0: 3 0x00000000800024b4 (0xffff04b7) x9 0xffffffffffff0000 +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000009 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000008 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000007 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000006 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000005 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000004 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000003 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000002 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000001 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024b8 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x00000000800024b8 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x00000000800024bc (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024bc (0xfff4041b) x8 0x0000000000000000 +core 0: 0x00000000800024c0 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x00000000800024c0 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x00000000800024c4 (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x00000000800024c4 (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x00000000800024c8 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x00000000800024c8 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x00000000800024cc (0x979ff0ef) jal pc - 0x688 +core 0: 3 0x00000000800024cc (0x979ff0ef) x1 0x00000000800024d0 +core 0: >>>> __extendhfsf2 +core 0: 0x0000000080001e44 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001e44 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001e48 (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001e48 (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001e4c (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001e4c (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001e50 (0x00a6d71b) srliw a4, a3, 10 +core 0: 3 0x0000000080001e50 (0x00a6d71b) x14 0x0000000000000010 +core 0: 0x0000000080001e54 (0x01f77713) andi a4, a4, 31 +core 0: 3 0x0000000080001e54 (0x01f77713) x14 0x0000000000000010 +core 0: 0x0000000080001e58 (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001e58 (0x00170613) x12 0x0000000000000011 +core 0: 0x0000000080001e5c (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001e5c (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001e60 (0x3ff6f793) andi a5, a3, 1023 +core 0: 3 0x0000000080001e60 (0x3ff6f793) x15 0x0000000000000280 +core 0: 0x0000000080001e64 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001e64 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001e68 (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001e68 (0x00060a63) +core 0: 0x0000000080001e6c (0x07070713) addi a4, a4, 112 +core 0: 3 0x0000000080001e6c (0x07070713) x14 0x0000000000000080 +core 0: 0x0000000080001e70 (0x00d79793) slli a5, a5, 13 +core 0: 3 0x0000000080001e70 (0x00d79793) x15 0x0000000000500000 +core 0: 0x0000000080001e74 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001e74 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001e78 (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001e78 (0x0200006f) +core 0: 0x0000000080001e98 (0x02979793) slli a5, a5, 41 +core 0: 3 0x0000000080001e98 (0x02979793) x15 0xa000000000000000 +core 0: 0x0000000080001e9c (0x0177171b) slliw a4, a4, 23 +core 0: 3 0x0000000080001e9c (0x0177171b) x14 0x0000000040000000 +core 0: 0x0000000080001ea0 (0x0297d793) srli a5, a5, 41 +core 0: 3 0x0000000080001ea0 (0x0297d793) x15 0x0000000000500000 +core 0: 0x0000000080001ea4 (0x00f76733) or a4, a4, a5 +core 0: 3 0x0000000080001ea4 (0x00f76733) x14 0x0000000040500000 +core 0: 0x0000000080001ea8 (0x01f6969b) slliw a3, a3, 31 +core 0: 3 0x0000000080001ea8 (0x01f6969b) x13 0x0000000000000000 +core 0: 0x0000000080001eac (0x00e6e6b3) or a3, a3, a4 +core 0: 3 0x0000000080001eac (0x00e6e6b3) x13 0x0000000040500000 +core 0: 0x0000000080001eb0 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001eb0 (0x00060463) +core 0: 0x0000000080001eb8 (0xf0068553) fmv.w.x fa0, a3 +core 0: 3 0x0000000080001eb8 (0xf0068553) f10 0xffffffff40500000 +core 0: 0x0000000080001ebc (0x00008067) ret +core 0: 3 0x0000000080001ebc (0x00008067) +core 0: 0x00000000800024d0 (0x00a12427) fsw fa0, 8(sp) +core 0: 3 0x00000000800024d0 (0x00a12427) mem 0x0000000080022758 0x40500000 +core 0: 0x00000000800024d4 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x00000000800024d4 (0xfe0412e3) +core 0: 0x00000000800024d8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800024d8 (0xc00027f3) x15 0x0000000000000694 +core 0: 0x00000000800024dc (0x00000797) auipc a5, 0x0 +core 0: 3 0x00000000800024dc (0x00000797) x15 0x00000000800024dc +core 0: 0x00000000800024e0 (0x0e47a787) flw fa5, 228(a5) +core 0: 3 0x00000000800024e0 (0x0e47a787) f15 0xffffffff40500000 mem 0x00000000800025c0 +core 0: 0x00000000800024e4 (0x00f12627) fsw fa5, 12(sp) +core 0: 3 0x00000000800024e4 (0x00f12627) mem 0x000000008002275c 0x40500000 +core 0: 0x00000000800024e8 (0xc00027f3) csrr a5, cycle +core 0: 3 0x00000000800024e8 (0xc00027f3) x15 0x00000000000006af +core 0: 0x00000000800024ec (0x00a00413) li s0, 10 +core 0: 3 0x00000000800024ec (0x00a00413) x8 0x000000000000000a +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000009 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000008 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000007 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000006 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000005 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000004 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000003 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000002 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000001 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x00000000800024f0 (0x00c12507) flw fa0, 12(sp) +core 0: 3 0x00000000800024f0 (0x00c12507) f10 0xffffffff40500000 mem 0x000000008002275c +core 0: 0x00000000800024f4 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x00000000800024f4 (0xfff4041b) x8 0x0000000000000000 +core 0: 0x00000000800024f8 (0xd15ff0ef) jal pc - 0x2ec +core 0: 3 0x00000000800024f8 (0xd15ff0ef) x1 0x00000000800024fc +core 0: >>>> __truncsfhf2 +core 0: 0x000000008000220c (0xe00505d3) fmv.x.w a1, fa0 +core 0: 3 0x000000008000220c (0xe00505d3) x11 0x0000000040500000 +core 0: 0x0000000080002210 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080002210 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080002214 (0x0175d71b) srliw a4, a1, 23 +core 0: 3 0x0000000080002214 (0x0175d71b) x14 0x0000000000000080 +core 0: 0x0000000080002218 (0x0ff77713) andi a4, a4, 255 +core 0: 3 0x0000000080002218 (0x0ff77713) x14 0x0000000000000080 +core 0: 0x000000008000221c (0x00170613) addi a2, a4, 1 +core 0: 3 0x000000008000221c (0x00170613) x12 0x0000000000000081 +core 0: 0x0000000080002220 (0x02959793) slli a5, a1, 41 +core 0: 3 0x0000000080002220 (0x02959793) x15 0xa000000000000000 +core 0: 0x0000000080002224 (0x0fe67613) andi a2, a2, 254 +core 0: 3 0x0000000080002224 (0x0fe67613) x12 0x0000000000000080 +core 0: 0x0000000080002228 (0x0297d693) srli a3, a5, 41 +core 0: 3 0x0000000080002228 (0x0297d693) x13 0x0000000000500000 +core 0: 0x000000008000222c (0x0005051b) sext.w a0, a0 +core 0: 3 0x000000008000222c (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080002230 (0x01f5d59b) srliw a1, a1, 31 +core 0: 3 0x0000000080002230 (0x01f5d59b) x11 0x0000000000000000 +core 0: 0x0000000080002234 (0x0267d793) srli a5, a5, 38 +core 0: 3 0x0000000080002234 (0x0267d793) x15 0x0000000002800000 +core 0: 0x0000000080002238 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080002238 (0x10060463) +core 0: 0x000000008000223c (0xf9070713) addi a4, a4, -112 +core 0: 3 0x000000008000223c (0xf9070713) x14 0x0000000000000010 +core 0: 0x0000000080002240 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080002240 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080002244 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080002244 (0x06e65a63) +core 0: 0x00000000800022b8 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x00000000800022b8 (0x06e04663) +core 0: 0x0000000080002324 (0x03669693) slli a3, a3, 54 +core 0: 3 0x0000000080002324 (0x03669693) x13 0x0000000000000000 +core 0: 0x0000000080002328 (0x00d7d793) srli a5, a5, 13 +core 0: 3 0x0000000080002328 (0x00d7d793) x15 0x0000000000001400 +core 0: 0x000000008000232c (0x00d036b3) snez a3, a3 +core 0: 3 0x000000008000232c (0x00d036b3) x13 0x0000000000000000 +core 0: 0x0000000080002330 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080002330 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x0000000080002334 (0x00000613) li a2, 0 +core 0: 3 0x0000000080002334 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080002338 (0x00000693) li a3, 0 +core 0: 3 0x0000000080002338 (0x00000693) x13 0x0000000000000000 +core 0: 0x000000008000233c (0x0640006f) j pc + 0x64 +core 0: 3 0x000000008000233c (0x0640006f) +core 0: 0x00000000800023a0 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x00000000800023a0 (0x0077f813) x16 0x0000000000000000 +core 0: 0x00000000800023a4 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x00000000800023a4 (0xf00810e3) +core 0: 0x00000000800023a8 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x00000000800023a8 (0x00060863) +core 0: 0x00000000800023b8 (0x03279613) slli a2, a5, 50 +core 0: 3 0x00000000800023b8 (0x03279613) x12 0x5000000000000000 +core 0: 0x00000000800023bc (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x00000000800023bc (0x04064a63) +core 0: 0x00000000800023c0 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x00000000800023c0 (0x0037d793) x15 0x0000000000000280 +core 0: 0x00000000800023c4 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x00000000800023c4 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x00000000800023c8 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x00000000800023c8 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x00000000800023cc (0x00f76733) or a4, a4, a5 +core 0: 3 0x00000000800023cc (0x00f76733) x14 0x0000000000004280 +core 0: 0x00000000800023d0 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x00000000800023d0 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x00000000800023d4 (0x00b76733) or a4, a4, a1 +core 0: 3 0x00000000800023d4 (0x00b76733) x14 0x0000000000004280 +core 0: 0x00000000800023d8 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x00000000800023d8 (0x00068463) +core 0: 0x00000000800023e0 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x00000000800023e0 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x00000000800023e4 (0x00008067) ret +core 0: 3 0x00000000800023e4 (0x00008067) +core 0: 0x00000000800024fc (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x00000000800024fc (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002500 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002500 (0x01079793) x15 0xffffffff42800000 +core 0: 0x0000000080002504 (0x4107d793) srai a5, a5, 16 +core 0: 3 0x0000000080002504 (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002508 (0x00f11123) sh a5, 2(sp) +core 0: 3 0x0000000080002508 (0x00f11123) mem 0x0000000080022752 0x4280 +core 0: 0x000000008000250c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000250c (0xfe0412e3) +core 0: 0x0000000080002510 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002510 (0xc00027f3) x15 0x00000000000009d1 +core 0: 0x0000000080002514 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002514 (0xc00027f3) x15 0x00000000000009da +core 0: 0x0000000080002518 (0x00a00413) li s0, 10 +core 0: 3 0x0000000080002518 (0x00a00413) x8 0x000000000000000a +core 0: 0x000000008000251c (0xffff04b7) lui s1, 0xffff0 +core 0: 3 0x000000008000251c (0xffff04b7) x9 0xffffffffffff0000 +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000009 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000008 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000007 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000006 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000005 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000004 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000003 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000002 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000001 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002520 (0x00615783) lhu a5, 6(sp) +core 0: 3 0x0000000080002520 (0x00615783) x15 0x0000000000004280 mem 0x0000000080022756 +core 0: 0x0000000080002524 (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x0000000080002524 (0xfff4041b) x8 0x0000000000000000 +core 0: 0x0000000080002528 (0x0807c7bb) zext.h a5, a5 +core 0: 3 0x0000000080002528 (0x0807c7bb) x15 0x0000000000004280 +core 0: 0x000000008000252c (0x00f4e7b3) or a5, s1, a5 +core 0: 3 0x000000008000252c (0x00f4e7b3) x15 0xffffffffffff4280 +core 0: 0x0000000080002530 (0xf0078553) fmv.w.x fa0, a5 +core 0: 3 0x0000000080002530 (0xf0078553) f10 0xffffffffffff4280 +core 0: 0x0000000080002534 (0x9b5ff0ef) jal pc - 0x64c +core 0: 3 0x0000000080002534 (0x9b5ff0ef) x1 0x0000000080002538 +core 0: >>>> __extendhfdf2 +core 0: 0x0000000080001ee8 (0xe40506d3) fmv.x.h a3, fa0 +core 0: 3 0x0000000080001ee8 (0xe40506d3) x13 0x0000000000004280 +core 0: 0x0000000080001eec (0x002027f3) csrr a5, frm +core 0: 3 0x0000000080001eec (0x002027f3) x15 0x0000000000000000 +core 0: 0x0000000080001ef0 (0x0806c6bb) zext.h a3, a3 +core 0: 3 0x0000000080001ef0 (0x0806c6bb) x13 0x0000000000004280 +core 0: 0x0000000080001ef4 (0x00a6d79b) srliw a5, a3, 10 +core 0: 3 0x0000000080001ef4 (0x00a6d79b) x15 0x0000000000000010 +core 0: 0x0000000080001ef8 (0x01f7f793) andi a5, a5, 31 +core 0: 3 0x0000000080001ef8 (0x01f7f793) x15 0x0000000000000010 +core 0: 0x0000000080001efc (0x00178613) addi a2, a5, 1 +core 0: 3 0x0000000080001efc (0x00178613) x12 0x0000000000000011 +core 0: 0x0000000080001f00 (0x01e67613) andi a2, a2, 30 +core 0: 3 0x0000000080001f00 (0x01e67613) x12 0x0000000000000010 +core 0: 0x0000000080001f04 (0x3ff6f713) andi a4, a3, 1023 +core 0: 3 0x0000000080001f04 (0x3ff6f713) x14 0x0000000000000280 +core 0: 0x0000000080001f08 (0x48f6d693) bexti a3, a3, 15 +core 0: 3 0x0000000080001f08 (0x48f6d693) x13 0x0000000000000000 +core 0: 0x0000000080001f0c (0x00060a63) beqz a2, pc + 20 +core 0: 3 0x0000000080001f0c (0x00060a63) +core 0: 0x0000000080001f10 (0x3f078793) addi a5, a5, 1008 +core 0: 3 0x0000000080001f10 (0x3f078793) x15 0x0000000000000400 +core 0: 0x0000000080001f14 (0x02a71713) slli a4, a4, 42 +core 0: 3 0x0000000080001f14 (0x02a71713) x14 0x000a000000000000 +core 0: 0x0000000080001f18 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001f18 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001f1c (0x0200006f) j pc + 0x20 +core 0: 3 0x0000000080001f1c (0x0200006f) +core 0: 0x0000000080001f3c (0x00c71713) slli a4, a4, 12 +core 0: 3 0x0000000080001f3c (0x00c71713) x14 0xa000000000000000 +core 0: 0x0000000080001f40 (0x03479793) slli a5, a5, 52 +core 0: 3 0x0000000080001f40 (0x03479793) x15 0x4000000000000000 +core 0: 0x0000000080001f44 (0x00c75713) srli a4, a4, 12 +core 0: 3 0x0000000080001f44 (0x00c75713) x14 0x000a000000000000 +core 0: 0x0000000080001f48 (0x00e7e7b3) or a5, a5, a4 +core 0: 3 0x0000000080001f48 (0x00e7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f4c (0x03f69693) slli a3, a3, 63 +core 0: 3 0x0000000080001f4c (0x03f69693) x13 0x0000000000000000 +core 0: 0x0000000080001f50 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x0000000080001f50 (0x00d7e7b3) x15 0x400a000000000000 +core 0: 0x0000000080001f54 (0x00060463) beqz a2, pc + 8 +core 0: 3 0x0000000080001f54 (0x00060463) +core 0: 0x0000000080001f5c (0xf2078553) fmv.d.x fa0, a5 +core 0: 3 0x0000000080001f5c (0xf2078553) f10 0x400a000000000000 +core 0: 0x0000000080001f60 (0x00008067) ret +core 0: 3 0x0000000080001f60 (0x00008067) +core 0: 0x0000000080002538 (0x00a13827) fsd fa0, 16(sp) +core 0: 3 0x0000000080002538 (0x00a13827) mem 0x0000000080022760 0x400a000000000000 +core 0: 0x000000008000253c (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x000000008000253c (0xfe0412e3) +core 0: 0x0000000080002540 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002540 (0xc00027f3) x15 0x0000000000000c36 +core 0: 0x0000000080002544 (0x00000797) auipc a5, 0x0 +core 0: 3 0x0000000080002544 (0x00000797) x15 0x0000000080002544 +core 0: 0x0000000080002548 (0x0747b787) fld fa5, 116(a5) +core 0: 3 0x0000000080002548 (0x0747b787) f15 0x400a000000000000 mem 0x00000000800025b8 +core 0: 0x000000008000254c (0x00f13c27) fsd fa5, 24(sp) +core 0: 3 0x000000008000254c (0x00f13c27) mem 0x0000000080022768 0x400a000000000000 +core 0: 0x0000000080002550 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002550 (0xc00027f3) x15 0x0000000000000c6c +core 0: 0x0000000080002554 (0x00a00413) li s0, 10 +core 0: 3 0x0000000080002554 (0x00a00413) x8 0x000000000000000a +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000009 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000008 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000007 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000006 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000005 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000004 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000003 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000002 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000001 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002558 (0x01813507) fld fa0, 24(sp) +core 0: 3 0x0000000080002558 (0x01813507) f10 0x400a000000000000 mem 0x0000000080022768 +core 0: 0x000000008000255c (0xfff4041b) addiw s0, s0, -1 +core 0: 3 0x000000008000255c (0xfff4041b) x8 0x0000000000000000 +core 0: 0x0000000080002560 (0xa2dff0ef) jal pc - 0x5d4 +core 0: 3 0x0000000080002560 (0xa2dff0ef) x1 0x0000000080002564 +core 0: >>>> __truncdfhf2 +core 0: 0x0000000080001f8c (0xe20505d3) fmv.x.d a1, fa0 +core 0: 3 0x0000000080001f8c (0xe20505d3) x11 0x400a000000000000 +core 0: 0x0000000080001f90 (0x00202573) csrr a0, frm +core 0: 3 0x0000000080001f90 (0x00202573) x10 0x0000000000000000 +core 0: 0x0000000080001f94 (0x0345d713) srli a4, a1, 52 +core 0: 3 0x0000000080001f94 (0x0345d713) x14 0x0000000000000400 +core 0: 0x0000000080001f98 (0x7ff77713) andi a4, a4, 2047 +core 0: 3 0x0000000080001f98 (0x7ff77713) x14 0x0000000000000400 +core 0: 0x0000000080001f9c (0x00170613) addi a2, a4, 1 +core 0: 3 0x0000000080001f9c (0x00170613) x12 0x0000000000000401 +core 0: 0x0000000080001fa0 (0x00c59793) slli a5, a1, 12 +core 0: 3 0x0000000080001fa0 (0x00c59793) x15 0xa000000000000000 +core 0: 0x0000000080001fa4 (0x7fe67613) andi a2, a2, 2046 +core 0: 3 0x0000000080001fa4 (0x7fe67613) x12 0x0000000000000400 +core 0: 0x0000000080001fa8 (0x00c7d693) srli a3, a5, 12 +core 0: 3 0x0000000080001fa8 (0x00c7d693) x13 0x000a000000000000 +core 0: 0x0000000080001fac (0x0005051b) sext.w a0, a0 +core 0: 3 0x0000000080001fac (0x0005051b) x10 0x0000000000000000 +core 0: 0x0000000080001fb0 (0x03f5d593) srli a1, a1, 63 +core 0: 3 0x0000000080001fb0 (0x03f5d593) x11 0x0000000000000000 +core 0: 0x0000000080001fb4 (0x0097d793) srli a5, a5, 9 +core 0: 3 0x0000000080001fb4 (0x0097d793) x15 0x0050000000000000 +core 0: 0x0000000080001fb8 (0x10060463) beqz a2, pc + 264 +core 0: 3 0x0000000080001fb8 (0x10060463) +core 0: 0x0000000080001fbc (0xc1070713) addi a4, a4, -1008 +core 0: 3 0x0000000080001fbc (0xc1070713) x14 0x0000000000000010 +core 0: 0x0000000080001fc0 (0x01e00613) li a2, 30 +core 0: 3 0x0000000080001fc0 (0x01e00613) x12 0x000000000000001e +core 0: 0x0000000080001fc4 (0x06e65a63) bge a2, a4, pc + 116 +core 0: 3 0x0000000080001fc4 (0x06e65a63) +core 0: 0x0000000080002038 (0x06e04663) blt zero, a4, pc + 108 +core 0: 3 0x0000000080002038 (0x06e04663) +core 0: 0x00000000800020a4 (0x01969693) slli a3, a3, 25 +core 0: 3 0x00000000800020a4 (0x01969693) x13 0x0000000000000000 +core 0: 0x00000000800020a8 (0x02a7d793) srli a5, a5, 42 +core 0: 3 0x00000000800020a8 (0x02a7d793) x15 0x0000000000001400 +core 0: 0x00000000800020ac (0x00d036b3) snez a3, a3 +core 0: 3 0x00000000800020ac (0x00d036b3) x13 0x0000000000000000 +core 0: 0x00000000800020b0 (0x00d7e7b3) or a5, a5, a3 +core 0: 3 0x00000000800020b0 (0x00d7e7b3) x15 0x0000000000001400 +core 0: 0x00000000800020b4 (0x00000613) li a2, 0 +core 0: 3 0x00000000800020b4 (0x00000613) x12 0x0000000000000000 +core 0: 0x00000000800020b8 (0x00000693) li a3, 0 +core 0: 3 0x00000000800020b8 (0x00000693) x13 0x0000000000000000 +core 0: 0x00000000800020bc (0x0640006f) j pc + 0x64 +core 0: 3 0x00000000800020bc (0x0640006f) +core 0: 0x0000000080002120 (0x0077f813) andi a6, a5, 7 +core 0: 3 0x0000000080002120 (0x0077f813) x16 0x0000000000000000 +core 0: 0x0000000080002124 (0xf00810e3) bnez a6, pc - 256 +core 0: 3 0x0000000080002124 (0xf00810e3) +core 0: 0x0000000080002128 (0x00060863) beqz a2, pc + 16 +core 0: 3 0x0000000080002128 (0x00060863) +core 0: 0x0000000080002138 (0x03279613) slli a2, a5, 50 +core 0: 3 0x0000000080002138 (0x03279613) x12 0x5000000000000000 +core 0: 0x000000008000213c (0x04064a63) bltz a2, pc + 84 +core 0: 3 0x000000008000213c (0x04064a63) +core 0: 0x0000000080002140 (0x0037d793) srli a5, a5, 3 +core 0: 3 0x0000000080002140 (0x0037d793) x15 0x0000000000000280 +core 0: 0x0000000080002144 (0x00a7171b) slliw a4, a4, 10 +core 0: 3 0x0000000080002144 (0x00a7171b) x14 0x0000000000004000 +core 0: 0x0000000080002148 (0x3ff7f793) andi a5, a5, 1023 +core 0: 3 0x0000000080002148 (0x3ff7f793) x15 0x0000000000000280 +core 0: 0x000000008000214c (0x00f76733) or a4, a4, a5 +core 0: 3 0x000000008000214c (0x00f76733) x14 0x0000000000004280 +core 0: 0x0000000080002150 (0x00f5959b) slliw a1, a1, 15 +core 0: 3 0x0000000080002150 (0x00f5959b) x11 0x0000000000000000 +core 0: 0x0000000080002154 (0x00b76733) or a4, a4, a1 +core 0: 3 0x0000000080002154 (0x00b76733) x14 0x0000000000004280 +core 0: 0x0000000080002158 (0x00068463) beqz a3, pc + 8 +core 0: 3 0x0000000080002158 (0x00068463) +core 0: 0x0000000080002160 (0xf4070553) fmv.h.x fa0, a4 +core 0: 3 0x0000000080002160 (0xf4070553) f10 0xffffffffffff4280 +core 0: 0x0000000080002164 (0x00008067) ret +core 0: 3 0x0000000080002164 (0x00008067) +core 0: 0x0000000080002564 (0xe00507d3) fmv.x.w a5, fa0 +core 0: 3 0x0000000080002564 (0xe00507d3) x15 0xffffffffffff4280 +core 0: 0x0000000080002568 (0x01079793) slli a5, a5, 16 +core 0: 3 0x0000000080002568 (0x01079793) x15 0xffffffff42800000 +core 0: 0x000000008000256c (0x4107d793) srai a5, a5, 16 +core 0: 3 0x000000008000256c (0x4107d793) x15 0xffffffffffff4280 +core 0: 0x0000000080002570 (0x00f11223) sh a5, 4(sp) +core 0: 3 0x0000000080002570 (0x00f11223) mem 0x0000000080022754 0x4280 +core 0: 0x0000000080002574 (0xfe0412e3) bnez s0, pc - 28 +core 0: 3 0x0000000080002574 (0xfe0412e3) +core 0: 0x0000000080002578 (0xc00027f3) csrr a5, cycle +core 0: 3 0x0000000080002578 (0xc00027f3) x15 0x0000000000000f91 +core 0: 0x000000008000257c (0x03813083) ld ra, 56(sp) +core 0: 3 0x000000008000257c (0x03813083) x1 0x0000000080001cdc mem 0x0000000080022788 +core 0: 0x0000000080002580 (0x03013403) ld s0, 48(sp) +core 0: 3 0x0000000080002580 (0x03013403) x8 0x0000000000000000 mem 0x0000000080022780 +core 0: 0x0000000080002584 (0x02813483) ld s1, 40(sp) +core 0: 3 0x0000000080002584 (0x02813483) x9 0x0000000000000001 mem 0x0000000080022778 +core 0: 0x0000000080002588 (0x00000513) li a0, 0 +core 0: 3 0x0000000080002588 (0x00000513) x10 0x0000000000000000 +core 0: 0x000000008000258c (0x04010113) addi sp, sp, 64 +core 0: 3 0x000000008000258c (0x04010113) x2 0x0000000080022790 +core 0: 0x0000000080002590 (0x00008067) ret +core 0: 3 0x0000000080002590 (0x00008067) +core 0: 0x0000000080001cdc (0x00050a93) mv s5, a0 +core 0: 3 0x0000000080001cdc (0x00050a93) x21 0x0000000000000000 +core 0: 0x0000000080001ce0 (0x000a0493) mv s1, s4 +core 0: 3 0x0000000080001ce0 (0x000a0493) x9 0x00000000800227c0 +core 0: 0x0000000080001ce4 (0xcf018413) addi s0, gp, -784 +core 0: 3 0x0000000080001ce4 (0xcf018413) x8 0x0000000080002aa8 +core 0: 0x0000000080001ce8 (0xc0018913) addi s2, gp, -1024 +core 0: 3 0x0000000080001ce8 (0xc0018913) x18 0x00000000800029b8 +core 0: 0x0000000080001cec (0xde018993) addi s3, gp, -544 +core 0: 3 0x0000000080001cec (0xde018993) x19 0x0000000080002b98 +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029b8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002aa8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227c0 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002aa8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227c0 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227c0 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000000000f91 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000004280 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227c0 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227c0 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029b8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c0 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c1 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c2 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c3 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c4 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c5 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c6 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c7 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c8 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227c9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227c9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227c9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227c9 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227c9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ca +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ca +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ca mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ca 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ca mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227cb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227cb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227c0 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227c0 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029b8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227cb mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227cb 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227cb mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002aa8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ab0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029c0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227cb +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029c0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ab0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227cb +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ab0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227cb +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227cb +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227cb +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227cb +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227cb +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029c0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cb 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227cc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227cc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cc 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227cd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227cd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cd 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ce +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ce +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ce mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ce 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ce mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227cf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227cf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227cf mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227cf 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227cf mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d0 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d1 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d2 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d3 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d4 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d5 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227cb mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227cb mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029c0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227d6 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227d6 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227d6 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ab0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ab8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029c8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227d6 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029c8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ab8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227d6 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ab8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227d6 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227d6 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227d6 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227d6 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227d6 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029c8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d6 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d7 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d8 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227d9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227d9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227d9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227d9 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227d9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227da +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227da +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227da mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227da 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227da mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227db +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227db +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227db mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227db 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227db mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227dc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227dc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227dc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227dc 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227dc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227dd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227dd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227dd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227dd 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227dd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227de +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227de +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227de mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227de 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227de mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227df +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227df +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227df mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227df 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227df mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e0 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227d6 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227d6 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029c8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227e1 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227e1 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227e1 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ab8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ac0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029d0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227e1 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029d0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ac0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227e1 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ac0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227e1 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227e1 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227e1 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227e1 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227e1 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029d0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e1 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e2 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e3 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e4 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e5 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e6 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e7 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e8 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227e9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227e9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227e9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227e9 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227e9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ea +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ea +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ea mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ea 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ea mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227eb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227eb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227eb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227eb 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227eb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ec +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ec +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227e1 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227e1 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029d0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227ec mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227ec 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227ec mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ac0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ac8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029d8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227ec +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029d8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ac8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227ec +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ac8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227ec +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227ec +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227ec +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227ec +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227ec +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029d8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ec mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ec 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ec mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ed +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ed +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ed mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ed 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ed mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ee +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ee +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ee mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ee 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ee mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ef +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ef +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ef mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ef 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ef mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f0 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f1 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f2 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f3 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f4 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f5 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f6 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227ec mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227ec mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029d8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800227f7 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800227f7 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800227f7 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ac8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ad0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029e0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800227f7 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029e0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ad0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800227f7 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ad0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800227f7 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800227f7 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800227f7 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800227f7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800227f7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029e0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f7 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f8 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227f9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227f9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227f9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227f9 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227f9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fa mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fa 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fa mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fb 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fc 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fd 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227fe +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227fe +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227fe mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227fe 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227fe mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800227ff +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800227ff +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800227ff mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800227ff 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800227ff mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022800 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022800 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022800 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022800 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022800 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022801 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022801 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022801 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022801 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022801 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022802 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022802 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800227f7 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800227f7 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029e0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022802 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022802 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022802 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ad0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ad8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029e8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022802 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029e8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ad8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022802 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ad8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022802 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022802 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022802 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022802 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022802 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029e8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022802 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022802 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022802 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022803 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022803 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022803 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022803 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022803 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022804 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022804 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022804 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022804 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022804 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022805 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022805 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022805 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022805 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022805 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022806 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022806 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022806 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022806 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022806 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022807 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022807 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022807 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022807 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022807 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022808 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022808 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022808 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022808 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022808 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022809 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022809 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022809 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022809 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022809 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280b 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280c 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022802 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022802 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029e8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002280d mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002280d 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002280d mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ad8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ae0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029f0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002280d +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029f0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ae0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002280d +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ae0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002280d +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002280d +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002280d +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002280d +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002280d +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029f0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280d 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280e 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002280f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002280f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002280f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002280f 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002280f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022810 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022810 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022810 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022810 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022810 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022811 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022811 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022811 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022811 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022811 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022812 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022812 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022812 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022812 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022812 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022813 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022813 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022813 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022813 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022813 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022814 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022814 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022814 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022814 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022814 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022815 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022815 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022815 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022815 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022815 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022816 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022816 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022816 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022816 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022816 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022817 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022817 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022817 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022817 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022817 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022818 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022818 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002280d mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002280d mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029f0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022818 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022818 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022818 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ae0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002ae8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x00000000800029f8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022818 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x00000000800029f8 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002ae8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022818 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002ae8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022818 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022818 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022818 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022818 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022818 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x00000000800029f8 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022818 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022818 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022818 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022819 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022819 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022819 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022819 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022819 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281a 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281b 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281d 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002281f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002281f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002281f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002281f 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002281f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022820 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022820 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022820 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022820 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022820 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022821 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022821 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022821 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022821 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022821 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022822 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022822 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022822 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022822 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022822 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022823 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022823 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022818 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022818 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x00000000800029f8 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022823 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022823 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022823 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002ae8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002af0 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a00 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022823 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a00 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002af0 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022823 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002af0 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022823 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022823 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022823 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022823 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022823 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a00 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022823 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022823 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022823 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022824 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022824 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022824 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022824 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022824 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022825 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022825 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022825 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022825 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022825 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022826 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022826 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022826 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022826 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022826 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022827 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022827 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022827 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022827 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022827 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022828 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022828 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022828 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022828 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022828 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022829 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022829 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022829 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022829 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022829 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282a 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282b 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282c 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282d 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022823 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022823 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a00 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002282e mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002282e 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002282e mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002af0 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002af8 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a08 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002282e +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a08 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002af8 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002282e +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002af8 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002282e +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002282e +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002282e +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002282e +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002282e +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a08 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282e 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002282f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002282f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002282f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002282f 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002282f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022830 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022830 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022830 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022830 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022830 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022831 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022831 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022831 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022831 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022831 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022832 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022832 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022832 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022832 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022832 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022833 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022833 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022833 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022833 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022833 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022834 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022834 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022834 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022834 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022834 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022835 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022835 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022835 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022835 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022835 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022836 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022836 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022836 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022836 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022836 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022837 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022837 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022837 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022837 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022837 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022838 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022838 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022838 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022838 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022838 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022839 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022839 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002282e mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002282e mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a08 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022839 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022839 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022839 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002af8 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b00 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a10 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022839 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a10 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b00 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022839 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b00 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022839 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022839 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022839 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022839 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022839 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a10 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022839 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022839 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022839 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283a 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283b 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283c 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283d 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283e 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002283f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002283f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002283f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002283f 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002283f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022840 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022840 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022840 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022840 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022840 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022841 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022841 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022841 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022841 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022841 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022842 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022842 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022842 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022842 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022842 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022843 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022843 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022843 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022843 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022843 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022844 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022844 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022839 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022839 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a10 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022844 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022844 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022844 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b00 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b08 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a18 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022844 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a18 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b08 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022844 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b08 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022844 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022844 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022844 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022844 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022844 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a18 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022844 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022844 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022844 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022845 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022845 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022845 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022845 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022845 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022846 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022846 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022846 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022846 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022846 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022847 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022847 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022847 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022847 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022847 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022848 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022848 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022848 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022848 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022848 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022849 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022849 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022849 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022849 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022849 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284a 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284b 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284d 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284e 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002284f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002284f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022844 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022844 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a18 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002284f mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002284f 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002284f mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b08 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b10 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a20 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002284f +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a20 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b10 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002284f +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b10 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002284f +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002284f +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002284f +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002284f +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002284f +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a20 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002284f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002284f 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002284f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022850 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022850 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022850 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022850 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022850 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022851 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022851 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022851 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022851 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022851 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022852 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022852 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022852 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022852 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022852 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022853 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022853 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022853 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022853 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022853 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022854 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022854 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022854 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022854 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022854 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022855 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022855 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022855 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022855 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022855 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022856 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022856 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022856 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022856 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022856 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022857 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022857 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022857 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022857 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022857 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022858 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022858 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022858 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022858 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022858 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022859 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022859 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022859 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022859 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022859 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002284f mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002284f mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a20 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002285a mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002285a 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002285a mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b10 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b18 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a28 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002285a +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a28 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b18 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002285a +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b18 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002285a +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002285a +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002285a +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002285a +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002285a +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a28 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285a 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285b 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285c 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285d 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285e 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002285f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002285f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002285f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002285f 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002285f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022860 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022860 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022860 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022860 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022860 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022861 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022861 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022861 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022861 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022861 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022862 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022862 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022862 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022862 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022862 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022863 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022863 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022863 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022863 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022863 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022864 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022864 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022864 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022864 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022864 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022865 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022865 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002285a mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002285a mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a28 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022865 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022865 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022865 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b18 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b20 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a30 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022865 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a30 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b20 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022865 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b20 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022865 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022865 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022865 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022865 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022865 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a30 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022865 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022865 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022865 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022866 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022866 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022866 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022866 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022866 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022867 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022867 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022867 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022867 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022867 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022868 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022868 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022868 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022868 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022868 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022869 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022869 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022869 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022869 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022869 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286a 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286b 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286c 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286d 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286e 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002286f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002286f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002286f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002286f 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002286f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022870 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022870 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022865 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022865 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a30 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022870 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022870 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022870 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b20 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b28 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a38 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022870 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a38 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b28 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022870 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b28 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022870 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022870 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022870 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022870 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022870 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a38 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022870 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022870 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022870 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022871 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022871 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022871 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022871 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022871 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022872 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022872 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022872 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022872 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022872 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022873 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022873 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022873 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022873 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022873 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022874 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022874 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022874 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022874 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022874 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022875 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022875 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022875 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022875 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022875 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022876 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022876 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022876 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022876 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022876 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022877 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022877 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022877 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022877 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022877 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022878 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022878 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022878 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022878 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022878 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022879 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022879 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022879 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022879 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022879 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287a 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022870 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022870 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a38 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002287b mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002287b 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002287b mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b28 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b30 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a40 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002287b +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a40 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b30 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002287b +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b30 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002287b +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002287b +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002287b +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002287b +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002287b +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a40 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287b 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287c 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287d 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287e 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002287f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002287f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002287f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002287f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002287f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022880 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022880 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022880 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022880 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022880 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022881 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022881 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022881 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022881 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022881 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022882 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022882 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022882 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022882 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022882 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022883 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022883 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022883 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022883 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022883 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022884 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022884 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022884 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022884 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022884 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022885 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022885 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022885 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022885 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022885 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022886 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022886 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002287b mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002287b mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a40 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022886 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022886 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022886 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b30 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b38 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a48 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022886 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a48 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b38 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022886 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b38 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022886 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022886 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022886 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022886 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022886 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a48 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022886 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022886 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022886 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022887 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022887 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022887 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022887 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022887 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022888 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022888 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022888 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022888 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022888 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022889 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022889 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022889 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022889 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022889 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288a 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288b 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288c 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288d 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288e 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002288f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002288f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002288f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002288f 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002288f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022890 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022890 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022890 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022890 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022890 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022891 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022891 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022886 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022886 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a48 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x0000000080022891 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x0000000080022891 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x0000000080022891 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b38 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b40 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a50 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x0000000080022891 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a50 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b40 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x0000000080022891 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b40 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x0000000080022891 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x0000000080022891 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x0000000080022891 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x0000000080022891 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x0000000080022891 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a50 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022891 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022891 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022891 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022892 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022892 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022892 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022892 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022892 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022893 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022893 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022893 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022893 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022893 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022894 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022894 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022894 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022894 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022894 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022895 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022895 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022895 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022895 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022895 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022896 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022896 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022896 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022896 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022896 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022897 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022897 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022897 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022897 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022897 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022898 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022898 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022898 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022898 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022898 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022899 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022899 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022899 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022899 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022899 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289a mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289a 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289a mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289b +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289b +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289b mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289b 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289b mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289c +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289c +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x0000000080022891 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x0000000080022891 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a50 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002289c mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002289c 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002289c mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b40 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b48 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a58 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002289c +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a58 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b48 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x000000008002289c +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b48 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x000000008002289c +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x000000008002289c +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x000000008002289c +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x000000008002289c +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x000000008002289c +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a58 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289c mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289c 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289c mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289d +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289d +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289d mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289d 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289d mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289e +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289e +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289e mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289e 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289e mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002289f +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002289f +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x000000008002289f mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x000000008002289f 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x000000008002289f mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a0 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a1 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a2 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a3 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a4 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a5 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a6 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x000000008002289c mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x000000008002289c mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a58 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228a7 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228a7 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228a7 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b48 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b50 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a60 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228a7 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a60 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b50 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228a7 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b50 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228a7 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228a7 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228a7 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228a7 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228a7 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a60 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a7 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a8 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228a9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228a9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228a9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228a9 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228a9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228aa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228aa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228aa mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228aa 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228aa mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ab +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ab +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ab mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ab 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ab mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ac +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ac +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ac mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ac 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ac mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ad +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ad +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ad mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ad 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ad mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ae +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ae +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ae mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ae 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ae mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228af +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228af +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228af mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228af 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228af mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b0 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b1 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228a7 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228a7 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a60 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228b2 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228b2 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228b2 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b50 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b58 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a68 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228b2 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a68 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b58 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228b2 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b58 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228b2 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228b2 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228b2 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228b2 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228b2 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a68 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b2 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b3 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b4 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b5 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b6 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b7 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b8 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228b9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228b9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228b9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228b9 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228b9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ba +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ba +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ba mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ba 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ba mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228bb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228bb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bb 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228bc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228bc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bc 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228bd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228bd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228b2 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228b2 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a68 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228bd mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228bd 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228bd mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b58 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b60 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a70 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228bd +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a70 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b60 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228bd +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b60 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228bd +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228bd +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228bd +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228bd +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228bd +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a70 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bd 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228be +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228be +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228be mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228be 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228be mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228bf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228bf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228bf mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228bf 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228bf mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c0 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c1 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c2 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c3 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c4 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c5 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c6 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c7 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228bd mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228bd mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a70 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228c8 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228c8 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228c8 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b60 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b68 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a78 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228c8 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a78 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b68 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228c8 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b68 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228c8 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228c8 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228c8 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228c8 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228c8 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a78 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c8 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228c9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228c9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228c9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228c9 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228c9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ca +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ca +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ca mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ca 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ca mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228cb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228cb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228cb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228cb 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228cb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228cc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228cc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228cc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228cc 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228cc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228cd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228cd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228cd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228cd 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228cd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ce +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ce +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ce mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ce 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ce mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228cf +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228cf +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228cf mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228cf 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228cf mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d0 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d1 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d2 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228c8 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228c8 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a78 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228d3 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228d3 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228d3 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b68 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b70 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a80 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228d3 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a80 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b70 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228d3 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b70 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228d3 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228d3 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228d3 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228d3 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228d3 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a80 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d3 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d4 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d5 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d6 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d7 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d8 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228d9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228d9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228d9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228d9 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228d9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228da +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228da +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228da mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228da 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228da mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228db +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228db +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228db mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228db 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228db mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228dc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228dc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228dc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228dc 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228dc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228dd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228dd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228dd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228dd 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228dd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228de +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228de +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228d3 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228d3 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a80 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228de mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228de 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228de mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b70 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b78 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a88 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228de +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a88 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b78 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228de +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b78 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228de +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228de +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228de +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228de +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228de +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a88 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228de mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228de 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228de mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228df +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228df +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228df mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228df 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228df mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e0 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e1 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e2 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e3 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e4 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e5 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e6 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e7 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e8 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228e9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228e9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228de mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228de mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a88 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228e9 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228e9 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228e9 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b78 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b80 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a90 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228e9 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a90 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b80 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228e9 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b80 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228e9 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228e9 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228e9 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228e9 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228e9 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a90 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228e9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228e9 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228e9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ea +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ea +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ea mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ea 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ea mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228eb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228eb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228eb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228eb 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228eb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ec +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ec +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ec mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ec 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ec mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ed +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ed +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ed mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ed 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ed mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ee +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ee +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ee mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ee 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ee mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ef +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ef +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ef mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ef 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ef mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f0 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f0 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f0 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f0 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f0 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f1 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f1 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f1 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f1 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f1 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f2 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f2 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f2 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f2 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f2 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f3 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f3 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f3 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f3 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f3 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f4 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f4 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228e9 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228e9 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a90 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228f4 mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228f4 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228f4 mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b80 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b88 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002a98 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228f4 +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002a98 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b88 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228f4 +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b88 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228f4 +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228f4 +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228f4 +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228f4 +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228f4 +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002a98 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f4 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f4 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f4 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f5 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f5 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f5 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f5 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f5 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f6 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f6 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f6 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f6 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f6 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f7 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f7 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f7 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f7 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f7 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f8 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f8 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f8 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f8 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f8 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228f9 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228f9 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228f9 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228f9 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228f9 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fa +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fa +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fa mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fa 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fa mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fb +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fb +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fb mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fb 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fb mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fc +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fc +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fc mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fc 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fc mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fd +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fd +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fd mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fd 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fd mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228fe +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228fe +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228fe mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228fe 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228fe mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x00000000800228ff +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x00000000800228ff +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228f4 mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228f4 mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002a98 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x00000000800228ff mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x00000000800228ff 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x00000000800228ff mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b88 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b90 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002aa0 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x00000000800228ff +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001cf0 (0x00093683) ld a3, 0(s2) +core 0: 3 0x0000000080001cf0 (0x00093683) x13 0x0000000000000000 mem 0x0000000080002aa0 +core 0: 0x0000000080001cf4 (0x00043603) ld a2, 0(s0) +core 0: 3 0x0000000080001cf4 (0x00043603) x12 0x0000000000000000 mem 0x0000000080002b90 +core 0: 0x0000000080001cf8 (0x00048513) mv a0, s1 +core 0: 3 0x0000000080001cf8 (0x00048513) x10 0x00000000800228ff +core 0: 0x0000000080001cfc (0x00001597) auipc a1, 0x1 +core 0: 3 0x0000000080001cfc (0x00001597) x11 0x0000000080002cfc +core 0: 0x0000000080001d00 (0xb5458593) addi a1, a1, -1196 +core 0: 3 0x0000000080001d00 (0xb5458593) x11 0x0000000080002850 +core 0: 0x0000000080001d04 (0xd35ff0ef) jal pc - 0x2cc +core 0: 3 0x0000000080001d04 (0xd35ff0ef) x1 0x0000000080001d08 +core 0: >>>> sprintf +core 0: 0x0000000080001a38 (0xfa010113) addi sp, sp, -96 +core 0: 3 0x0000000080001a38 (0xfa010113) x2 0x0000000080022730 +core 0: 0x0000000080001a3c (0x03010313) addi t1, sp, 48 +core 0: 3 0x0000000080001a3c (0x03010313) x6 0x0000000080022760 +core 0: 0x0000000080001a40 (0x02813023) sd s0, 32(sp) +core 0: 3 0x0000000080001a40 (0x02813023) mem 0x0000000080022750 0x0000000080002b90 +core 0: 0x0000000080001a44 (0x00a13423) sd a0, 8(sp) +core 0: 3 0x0000000080001a44 (0x00a13423) mem 0x0000000080022738 0x00000000800228ff +core 0: 0x0000000080001a48 (0x02c13823) sd a2, 48(sp) +core 0: 3 0x0000000080001a48 (0x02c13823) mem 0x0000000080022760 0x0000000000000000 +core 0: 0x0000000080001a4c (0x02d13c23) sd a3, 56(sp) +core 0: 3 0x0000000080001a4c (0x02d13c23) mem 0x0000000080022768 0x0000000000000000 +core 0: 0x0000000080001a50 (0x00050413) mv s0, a0 +core 0: 3 0x0000000080001a50 (0x00050413) x8 0x00000000800228ff +core 0: 0x0000000080001a54 (0x00058613) mv a2, a1 +core 0: 3 0x0000000080001a54 (0x00058613) x12 0x0000000080002850 +core 0: 0x0000000080001a58 (0x00000517) auipc a0, 0x0 +core 0: 3 0x0000000080001a58 (0x00000517) x10 0x0000000080001a58 +core 0: 0x0000000080001a5c (0x98050513) addi a0, a0, -1664 +core 0: 3 0x0000000080001a5c (0x98050513) x10 0x00000000800013d8 +core 0: 0x0000000080001a60 (0x00810593) addi a1, sp, 8 +core 0: 3 0x0000000080001a60 (0x00810593) x11 0x0000000080022738 +core 0: 0x0000000080001a64 (0x00030693) mv a3, t1 +core 0: 3 0x0000000080001a64 (0x00030693) x13 0x0000000080022760 +core 0: 0x0000000080001a68 (0x02113423) sd ra, 40(sp) +core 0: 3 0x0000000080001a68 (0x02113423) mem 0x0000000080022758 0x0000000080001d08 +core 0: 0x0000000080001a6c (0x04f13423) sd a5, 72(sp) +core 0: 3 0x0000000080001a6c (0x04f13423) mem 0x0000000080022778 0x00000000800228ff +core 0: 0x0000000080001a70 (0x04e13023) sd a4, 64(sp) +core 0: 3 0x0000000080001a70 (0x04e13023) mem 0x0000000080022770 0x0000000000000000 +core 0: 0x0000000080001a74 (0x05013823) sd a6, 80(sp) +core 0: 3 0x0000000080001a74 (0x05013823) mem 0x0000000080022780 0x0000000000000000 +core 0: 0x0000000080001a78 (0x05113c23) sd a7, 88(sp) +core 0: 3 0x0000000080001a78 (0x05113c23) mem 0x0000000080022788 0x0000000000000000 +core 0: 0x0000000080001a7c (0x00613c23) sd t1, 24(sp) +core 0: 3 0x0000000080001a7c (0x00613c23) mem 0x0000000080022748 0x0000000080022760 +core 0: 0x0000000080001a80 (0xd80ff0ef) jal pc - 0xa80 +core 0: 3 0x0000000080001a80 (0xd80ff0ef) x1 0x0000000080001a84 +core 0: >>>> vprintfmt +core 0: 0x0000000080001000 (0xea010113) addi sp, sp, -352 +core 0: 3 0x0000000080001000 (0xea010113) x2 0x00000000800225d0 +core 0: 0x0000000080001004 (0x14813823) sd s0, 336(sp) +core 0: 3 0x0000000080001004 (0x14813823) mem 0x0000000080022720 0x00000000800228ff +core 0: 0x0000000080001008 (0x14913423) sd s1, 328(sp) +core 0: 3 0x0000000080001008 (0x14913423) mem 0x0000000080022718 0x00000000800228ff +core 0: 0x000000008000100c (0x15213023) sd s2, 320(sp) +core 0: 3 0x000000008000100c (0x15213023) mem 0x0000000080022710 0x0000000080002aa0 +core 0: 0x0000000080001010 (0x13413823) sd s4, 304(sp) +core 0: 3 0x0000000080001010 (0x13413823) mem 0x0000000080022700 0x00000000800227c0 +core 0: 0x0000000080001014 (0x13513423) sd s5, 296(sp) +core 0: 3 0x0000000080001014 (0x13513423) mem 0x00000000800226f8 0x0000000000000000 +core 0: 0x0000000080001018 (0x13613023) sd s6, 288(sp) +core 0: 3 0x0000000080001018 (0x13613023) mem 0x00000000800226f0 0x0000000000000000 +core 0: 0x000000008000101c (0x11713c23) sd s7, 280(sp) +core 0: 3 0x000000008000101c (0x11713c23) mem 0x00000000800226e8 0x0000000000000000 +core 0: 0x0000000080001020 (0x14113c23) sd ra, 344(sp) +core 0: 3 0x0000000080001020 (0x14113c23) mem 0x0000000080022728 0x0000000080001a84 +core 0: 0x0000000080001024 (0x13313c23) sd s3, 312(sp) +core 0: 3 0x0000000080001024 (0x13313c23) mem 0x0000000080022708 0x0000000080002b98 +core 0: 0x0000000080001028 (0x11813823) sd s8, 272(sp) +core 0: 3 0x0000000080001028 (0x11813823) mem 0x00000000800226e0 0x0000000000000000 +core 0: 0x000000008000102c (0x11913423) sd s9, 264(sp) +core 0: 3 0x000000008000102c (0x11913423) mem 0x00000000800226d8 0x0000000000000000 +core 0: 0x0000000080001030 (0x11a13023) sd s10, 256(sp) +core 0: 3 0x0000000080001030 (0x11a13023) mem 0x00000000800226d0 0x0000000000000000 +core 0: 0x0000000080001034 (0x00050493) mv s1, a0 +core 0: 3 0x0000000080001034 (0x00050493) x9 0x00000000800013d8 +core 0: 0x0000000080001038 (0x00060413) mv s0, a2 +core 0: 3 0x0000000080001038 (0x00060413) x8 0x0000000080002850 +core 0: 0x000000008000103c (0x00068b93) mv s7, a3 +core 0: 3 0x000000008000103c (0x00068b93) x23 0x0000000080022760 +core 0: 0x0000000080001040 (0x00058913) mv s2, a1 +core 0: 3 0x0000000080001040 (0x00058913) x18 0x0000000080022738 +core 0: 0x0000000080001044 (0x02500a13) li s4, 37 +core 0: 3 0x0000000080001044 (0x02500a13) x20 0x0000000000000025 +core 0: 0x0000000080001048 (0x05500b13) li s6, 85 +core 0: 3 0x0000000080001048 (0x05500b13) x22 0x0000000000000055 +core 0: 0x000000008000104c (0xaa418a93) addi s5, gp, -1372 +core 0: 3 0x000000008000104c (0xaa418a93) x21 0x000000008000285c +core 0: 0x0000000080001050 (0x0140006f) j pc + 0x14 +core 0: 3 0x0000000080001050 (0x0140006f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002850 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000073 mem 0x0000000080002851 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002851 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002851 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000050 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000050 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002852 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x000000008000299c +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffea40 mem 0x000000008000299c +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x000000008000129c +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x000000008000129c (0x000bbc03) ld s8, 0(s7) +core 0: 3 0x000000008000129c (0x000bbc03) x24 0x0000000000000000 mem 0x0000000080022760 +core 0: 0x00000000800012a0 (0x000d0d1b) sext.w s10, s10 +core 0: 3 0x00000000800012a0 (0x000d0d1b) x26 0x0000000000000020 +core 0: 0x00000000800012a4 (0xfd3d0793) addi a5, s10, -45 +core 0: 3 0x00000000800012a4 (0xfd3d0793) x15 0xfffffffffffffff3 +core 0: 0x00000000800012a8 (0x00f037b3) snez a5, a5 +core 0: 3 0x00000000800012a8 (0x00f037b3) x15 0x0000000000000001 +core 0: 0x00000000800012ac (0x01902733) slt a4, zero, s9 +core 0: 3 0x00000000800012ac (0x01902733) x14 0x0000000000000000 +core 0: 0x00000000800012b0 (0x00f77733) and a4, a4, a5 +core 0: 3 0x00000000800012b0 (0x00f77733) x14 0x0000000000000000 +core 0: 0x00000000800012b4 (0x008b8b93) addi s7, s7, 8 +core 0: 3 0x00000000800012b4 (0x008b8b93) x23 0x0000000080022768 +core 0: 0x00000000800012b8 (0x0a0c0c63) beqz s8, pc + 184 +core 0: 3 0x00000000800012b8 (0x0a0c0c63) +core 0: 0x0000000080001370 (0x00001c17) auipc s8, 0x1 +core 0: 3 0x0000000080001370 (0x00001c17) x24 0x0000000080002370 +core 0: 0x0000000080001374 (0x258c0c13) addi s8, s8, 600 +core 0: 3 0x0000000080001374 (0x258c0c13) x24 0x00000000800025c8 +core 0: 0x0000000080001378 (0x02800513) li a0, 40 +core 0: 3 0x0000000080001378 (0x02800513) x10 0x0000000000000028 +core 0: 0x000000008000137c (0xf40706e3) beqz a4, pc - 180 +core 0: 3 0x000000008000137c (0xf40706e3) +core 0: 0x00000000800012c8 (0xfff00d13) li s10, -1 +core 0: 3 0x00000000800012c8 (0xfff00d13) x26 0xffffffffffffffff +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x00000000800228ff mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x00000000800228ff 0x28 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x00000000800228ff mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022900 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022900 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006e mem 0x00000000800025c9 +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025c9 +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffe +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022900 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022900 0x6e +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022900 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022901 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022901 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000075 mem 0x00000000800025ca +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ca +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffd +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022901 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022901 0x75 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022901 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022902 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022902 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cb +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cb +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffc +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022902 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022902 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022902 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022903 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022903 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x000000000000006c mem 0x00000000800025cc +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cc +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffb +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022903 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022903 0x6c +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022903 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022904 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022904 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000029 mem 0x00000000800025cd +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025cd +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffffa +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012cc (0x0009c663) bltz s3, pc + 12 +core 0: 3 0x00000000800012cc (0x0009c663) +core 0: 0x00000000800012d8 (0x00090593) mv a1, s2 +core 0: 3 0x00000000800012d8 (0x00090593) x11 0x0000000080022738 +core 0: 0x00000000800012dc (0x000480e7) jalr s1 +core 0: 3 0x00000000800012dc (0x000480e7) x1 0x00000000800012e0 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022904 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022904 0x29 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022904 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022905 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022905 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x00000000800012e0 (0x001c4503) lbu a0, 1(s8) +core 0: 3 0x00000000800012e0 (0x001c4503) x10 0x0000000000000000 mem 0x00000000800025ce +core 0: 0x00000000800012e4 (0x001c0c13) addi s8, s8, 1 +core 0: 3 0x00000000800012e4 (0x001c0c13) x24 0x00000000800025ce +core 0: 0x00000000800012e8 (0xfffc8c9b) addiw s9, s9, -1 +core 0: 3 0x00000000800012e8 (0xfffc8c9b) x25 0xfffffffffffffff9 +core 0: 0x00000000800012ec (0xfe0510e3) bnez a0, pc - 32 +core 0: 3 0x00000000800012ec (0xfe0510e3) +core 0: 0x00000000800012f0 (0xd7905ae3) bge zero, s9, pc - 652 +core 0: 3 0x00000000800012f0 (0xd7905ae3) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002852 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002853 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022905 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022905 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022905 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022906 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022906 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000003d mem 0x0000000080002853 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002854 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022906 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022906 0x3d +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022906 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022907 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022907 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000020 mem 0x0000000080002854 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002855 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022907 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022907 0x20 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022907 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022908 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022908 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000025 mem 0x0000000080002855 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x000000008000106c (0x00144683) lbu a3, 1(s0) +core 0: 3 0x000000008000106c (0x00144683) x13 0x0000000000000075 mem 0x0000000080002856 +core 0: 0x0000000080001070 (0x00140c13) addi s8, s0, 1 +core 0: 3 0x0000000080001070 (0x00140c13) x24 0x0000000080002856 +core 0: 0x0000000080001074 (0xfff00993) li s3, -1 +core 0: 3 0x0000000080001074 (0xfff00993) x19 0xffffffffffffffff +core 0: 0x0000000080001078 (0x000c0713) mv a4, s8 +core 0: 3 0x0000000080001078 (0x000c0713) x14 0x0000000080002856 +core 0: 0x000000008000107c (0x00098c93) mv s9, s3 +core 0: 3 0x000000008000107c (0x00098c93) x25 0xffffffffffffffff +core 0: 0x0000000080001080 (0x02000d13) li s10, 32 +core 0: 3 0x0000000080001080 (0x02000d13) x26 0x0000000000000020 +core 0: 0x0000000080001084 (0x00000613) li a2, 0 +core 0: 3 0x0000000080001084 (0x00000613) x12 0x0000000000000000 +core 0: 0x0000000080001088 (0xfdd6879b) addiw a5, a3, -35 +core 0: 3 0x0000000080001088 (0xfdd6879b) x15 0x0000000000000052 +core 0: 0x000000008000108c (0x0ff7f793) andi a5, a5, 255 +core 0: 3 0x000000008000108c (0x0ff7f793) x15 0x0000000000000052 +core 0: 0x0000000080001090 (0x00170413) addi s0, a4, 1 +core 0: 3 0x0000000080001090 (0x00170413) x8 0x0000000080002857 +core 0: 0x0000000080001094 (0x06fb6463) bltu s6, a5, pc + 104 +core 0: 3 0x0000000080001094 (0x06fb6463) +core 0: 0x0000000080001098 (0x2157c7b3) sh2add a5, a5, s5 +core 0: 3 0x0000000080001098 (0x2157c7b3) x15 0x00000000800029a4 +core 0: 0x000000008000109c (0x0007a783) lw a5, 0(a5) +core 0: 3 0x000000008000109c (0x0007a783) x15 0xffffffffffffeae8 mem 0x00000000800029a4 +core 0: 0x00000000800010a0 (0x015787b3) add a5, a5, s5 +core 0: 3 0x00000000800010a0 (0x015787b3) x15 0x0000000080001344 +core 0: 0x00000000800010a4 (0x00078067) jr a5 +core 0: 3 0x00000000800010a4 (0x00078067) +core 0: 0x0000000080001344 (0x00a00693) li a3, 10 +core 0: 3 0x0000000080001344 (0x00a00693) x13 0x000000000000000a +core 0: 0x0000000080001348 (0xf39ff06f) j pc - 0xc8 +core 0: 3 0x0000000080001348 (0xf39ff06f) +core 0: 0x0000000080001280 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001280 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001284 (0x008b8793) addi a5, s7, 8 +core 0: 3 0x0000000080001284 (0x008b8793) x15 0x0000000080022770 +core 0: 0x0000000080001288 (0xf2c746e3) blt a4, a2, pc - 212 +core 0: 3 0x0000000080001288 (0xf2c746e3) +core 0: 0x000000008000128c (0xf20614e3) bnez a2, pc - 216 +core 0: 3 0x000000008000128c (0xf20614e3) +core 0: 0x0000000080001290 (0x000be703) lwu a4, 0(s7) +core 0: 3 0x0000000080001290 (0x000be703) x14 0x0000000000000000 mem 0x0000000080022768 +core 0: 0x0000000080001294 (0x00078b93) mv s7, a5 +core 0: 3 0x0000000080001294 (0x00078b93) x23 0x0000000080022770 +core 0: 0x0000000080001298 (0xf25ff06f) j pc - 0xdc +core 0: 3 0x0000000080001298 (0xf25ff06f) +core 0: 0x00000000800011bc (0x02d775b3) remu a1, a4, a3 +core 0: 3 0x00000000800011bc (0x02d775b3) x11 0x0000000000000000 +core 0: 0x00000000800011c0 (0x00410613) addi a2, sp, 4 +core 0: 3 0x00000000800011c0 (0x00410613) x12 0x00000000800225d4 +core 0: 0x00000000800011c4 (0x00100793) li a5, 1 +core 0: 3 0x00000000800011c4 (0x00100793) x15 0x0000000000000001 +core 0: 0x00000000800011c8 (0x00b12023) sw a1, 0(sp) +core 0: 3 0x00000000800011c8 (0x00b12023) mem 0x00000000800225d0 0x00000000 +core 0: 0x00000000800011cc (0x16d76463) bltu a4, a3, pc + 360 +core 0: 3 0x00000000800011cc (0x16d76463) +core 0: 0x0000000080001334 (0x00000c13) li s8, 0 +core 0: 3 0x0000000080001334 (0x00000c13) x24 0x0000000000000000 +core 0: 0x0000000080001338 (0xeb5ff06f) j pc - 0x14c +core 0: 3 0x0000000080001338 (0xeb5ff06f) +core 0: 0x00000000800011ec (0x0397d263) bge a5, s9, pc + 36 +core 0: 3 0x00000000800011ec (0x0397d263) +core 0: 0x0000000080001210 (0x202c49b3) sh2add s3, s8, sp +core 0: 3 0x0000000080001210 (0x202c49b3) x19 0x00000000800225d0 +core 0: 0x0000000080001214 (0xffc10c93) addi s9, sp, -4 +core 0: 3 0x0000000080001214 (0xffc10c93) x25 0x00000000800225cc +core 0: 0x0000000080001218 (0x00900c13) li s8, 9 +core 0: 3 0x0000000080001218 (0x00900c13) x24 0x0000000000000009 +core 0: 0x000000008000121c (0x0009a783) lw a5, 0(s3) +core 0: 3 0x000000008000121c (0x0009a783) x15 0x0000000000000000 mem 0x00000000800225d0 +core 0: 0x0000000080001220 (0x03000513) li a0, 48 +core 0: 3 0x0000000080001220 (0x03000513) x10 0x0000000000000030 +core 0: 0x0000000080001224 (0x00fc7463) bgeu s8, a5, pc + 8 +core 0: 3 0x0000000080001224 (0x00fc7463) +core 0: 0x000000008000122c (0x00a7853b) addw a0, a5, a0 +core 0: 3 0x000000008000122c (0x00a7853b) x10 0x0000000000000030 +core 0: 0x0000000080001230 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001230 (0x00090593) x11 0x0000000080022738 +core 0: 0x0000000080001234 (0xffc98993) addi s3, s3, -4 +core 0: 3 0x0000000080001234 (0xffc98993) x19 0x00000000800225cc +core 0: 0x0000000080001238 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001238 (0x000480e7) x1 0x000000008000123c +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022908 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022908 0x30 +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022908 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x0000000080022909 +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x0000000080022909 +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x000000008000123c (0xff9990e3) bne s3, s9, pc - 32 +core 0: 3 0x000000008000123c (0xff9990e3) +core 0: 0x0000000080001240 (0xe25ff06f) j pc - 0x1dc +core 0: 3 0x0000000080001240 (0xe25ff06f) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x000000000000000a mem 0x0000000080002857 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x0000000080001058 (0x00090593) mv a1, s2 +core 0: 3 0x0000000080001058 (0x00090593) x11 0x0000000080022738 +core 0: 0x000000008000105c (0x00140413) addi s0, s0, 1 +core 0: 3 0x000000008000105c (0x00140413) x8 0x0000000080002858 +core 0: 0x0000000080001060 (0x000480e7) jalr s1 +core 0: 3 0x0000000080001060 (0x000480e7) x1 0x0000000080001064 +core 0: >>>> sprintf_putch.0 +core 0: 0x00000000800013d8 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013d8 (0x0005b783) x15 0x0000000080022909 mem 0x0000000080022738 +core 0: 0x00000000800013dc (0x00a78023) sb a0, 0(a5) +core 0: 3 0x00000000800013dc (0x00a78023) mem 0x0000000080022909 0x0a +core 0: 0x00000000800013e0 (0x0005b783) ld a5, 0(a1) +core 0: 3 0x00000000800013e0 (0x0005b783) x15 0x0000000080022909 mem 0x0000000080022738 +core 0: 0x00000000800013e4 (0x00178793) addi a5, a5, 1 +core 0: 3 0x00000000800013e4 (0x00178793) x15 0x000000008002290a +core 0: 0x00000000800013e8 (0x00f5b023) sd a5, 0(a1) +core 0: 3 0x00000000800013e8 (0x00f5b023) mem 0x0000000080022738 0x000000008002290a +core 0: 0x00000000800013ec (0x00008067) ret +core 0: 3 0x00000000800013ec (0x00008067) +core 0: 0x0000000080001064 (0x00044503) lbu a0, 0(s0) +core 0: 3 0x0000000080001064 (0x00044503) x10 0x0000000000000000 mem 0x0000000080002858 +core 0: 0x0000000080001068 (0xff4516e3) bne a0, s4, pc - 20 +core 0: 3 0x0000000080001068 (0xff4516e3) +core 0: 0x0000000080001054 (0x04050a63) beqz a0, pc + 84 +core 0: 3 0x0000000080001054 (0x04050a63) +core 0: 0x00000000800010a8 (0x15813083) ld ra, 344(sp) +core 0: 3 0x00000000800010a8 (0x15813083) x1 0x0000000080001a84 mem 0x0000000080022728 +core 0: 0x00000000800010ac (0x15013403) ld s0, 336(sp) +core 0: 3 0x00000000800010ac (0x15013403) x8 0x00000000800228ff mem 0x0000000080022720 +core 0: 0x00000000800010b0 (0x14813483) ld s1, 328(sp) +core 0: 3 0x00000000800010b0 (0x14813483) x9 0x00000000800228ff mem 0x0000000080022718 +core 0: 0x00000000800010b4 (0x14013903) ld s2, 320(sp) +core 0: 3 0x00000000800010b4 (0x14013903) x18 0x0000000080002aa0 mem 0x0000000080022710 +core 0: 0x00000000800010b8 (0x13813983) ld s3, 312(sp) +core 0: 3 0x00000000800010b8 (0x13813983) x19 0x0000000080002b98 mem 0x0000000080022708 +core 0: 0x00000000800010bc (0x13013a03) ld s4, 304(sp) +core 0: 3 0x00000000800010bc (0x13013a03) x20 0x00000000800227c0 mem 0x0000000080022700 +core 0: 0x00000000800010c0 (0x12813a83) ld s5, 296(sp) +core 0: 3 0x00000000800010c0 (0x12813a83) x21 0x0000000000000000 mem 0x00000000800226f8 +core 0: 0x00000000800010c4 (0x12013b03) ld s6, 288(sp) +core 0: 3 0x00000000800010c4 (0x12013b03) x22 0x0000000000000000 mem 0x00000000800226f0 +core 0: 0x00000000800010c8 (0x11813b83) ld s7, 280(sp) +core 0: 3 0x00000000800010c8 (0x11813b83) x23 0x0000000000000000 mem 0x00000000800226e8 +core 0: 0x00000000800010cc (0x11013c03) ld s8, 272(sp) +core 0: 3 0x00000000800010cc (0x11013c03) x24 0x0000000000000000 mem 0x00000000800226e0 +core 0: 0x00000000800010d0 (0x10813c83) ld s9, 264(sp) +core 0: 3 0x00000000800010d0 (0x10813c83) x25 0x0000000000000000 mem 0x00000000800226d8 +core 0: 0x00000000800010d4 (0x10013d03) ld s10, 256(sp) +core 0: 3 0x00000000800010d4 (0x10013d03) x26 0x0000000000000000 mem 0x00000000800226d0 +core 0: 0x00000000800010d8 (0x16010113) addi sp, sp, 352 +core 0: 3 0x00000000800010d8 (0x16010113) x2 0x0000000080022730 +core 0: 0x00000000800010dc (0x00008067) ret +core 0: 3 0x00000000800010dc (0x00008067) +core 0: 0x0000000080001a84 (0x00813783) ld a5, 8(sp) +core 0: 3 0x0000000080001a84 (0x00813783) x15 0x000000008002290a mem 0x0000000080022738 +core 0: 0x0000000080001a88 (0x00078023) sb zero, 0(a5) +core 0: 3 0x0000000080001a88 (0x00078023) mem 0x000000008002290a 0x00 +core 0: 0x0000000080001a8c (0x00813503) ld a0, 8(sp) +core 0: 3 0x0000000080001a8c (0x00813503) x10 0x000000008002290a mem 0x0000000080022738 +core 0: 0x0000000080001a90 (0x02813083) ld ra, 40(sp) +core 0: 3 0x0000000080001a90 (0x02813083) x1 0x0000000080001d08 mem 0x0000000080022758 +core 0: 0x0000000080001a94 (0x4085053b) subw a0, a0, s0 +core 0: 3 0x0000000080001a94 (0x4085053b) x10 0x000000000000000b +core 0: 0x0000000080001a98 (0x02013403) ld s0, 32(sp) +core 0: 3 0x0000000080001a98 (0x02013403) x8 0x0000000080002b90 mem 0x0000000080022750 +core 0: 0x0000000080001a9c (0x06010113) addi sp, sp, 96 +core 0: 3 0x0000000080001a9c (0x06010113) x2 0x0000000080022790 +core 0: 0x0000000080001aa0 (0x00008067) ret +core 0: 3 0x0000000080001aa0 (0x00008067) +core 0: 0x0000000080001d08 (0x00840413) addi s0, s0, 8 +core 0: 3 0x0000000080001d08 (0x00840413) x8 0x0000000080002b98 +core 0: 0x0000000080001d0c (0x00890913) addi s2, s2, 8 +core 0: 3 0x0000000080001d0c (0x00890913) x18 0x0000000080002aa8 +core 0: 0x0000000080001d10 (0x00a484b3) add s1, s1, a0 +core 0: 3 0x0000000080001d10 (0x00a484b3) x9 0x000000008002290a +core 0: 0x0000000080001d14 (0xfd341ee3) bne s0, s3, pc - 36 +core 0: 3 0x0000000080001d14 (0xfd341ee3) +core 0: 0x0000000080001d18 (0x009a0663) beq s4, s1, pc + 12 +core 0: 3 0x0000000080001d18 (0x009a0663) +core 0: 0x0000000080001d1c (0x000a0513) mv a0, s4 +core 0: 3 0x0000000080001d1c (0x000a0513) x10 0x00000000800227c0 +core 0: 0x0000000080001d20 (0xbf1ff0ef) jal pc - 0x410 +core 0: 3 0x0000000080001d20 (0xbf1ff0ef) x1 0x0000000080001d24 +core 0: >>>> printstr +core 0: 0x0000000080001910 (0x00054783) lbu a5, 0(a0) +core 0: 3 0x0000000080001910 (0x00054783) x15 0x0000000000000028 mem 0x00000000800227c0 +core 0: 0x0000000080001914 (0xf9010113) addi sp, sp, -112 +core 0: 3 0x0000000080001914 (0xf9010113) x2 0x0000000080022720 +core 0: 0x0000000080001918 (0x03f10693) addi a3, sp, 63 +core 0: 3 0x0000000080001918 (0x03f10693) x13 0x000000008002275f +core 0: 0x000000008000191c (0xfc06f693) andi a3, a3, -64 +core 0: 3 0x000000008000191c (0xfc06f693) x13 0x0000000080022740 +core 0: 0x0000000080001920 (0x00078c63) beqz a5, pc + 24 +core 0: 3 0x0000000080001920 (0x00078c63) +core 0: 0x0000000080001924 (0x00050793) mv a5, a0 +core 0: 3 0x0000000080001924 (0x00050793) x15 0x00000000800227c0 +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227c1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227c2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227c3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227c4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227c5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227c6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227c7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227c8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227c9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227c9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227ca +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ca +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227cb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227cb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227cc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227cc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227cd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227cd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227ce +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ce +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227cf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227cf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227d0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227d1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227d2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227d3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227d4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227d5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227d6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227d7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227d8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227d9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227d9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227da +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227da +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227db +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227db +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227dc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227dc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227dd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227dd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227de +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227de +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227df +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227df +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227e0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227e1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227e2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227e3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227e4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227e5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227e6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227e7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227e8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227e9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227e9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227ea +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ea +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227eb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227eb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227ec +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ec +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227ed +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ed +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227ee +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ee +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227ef +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ef +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227f0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227f1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227f2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227f3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227f4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800227f5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800227f6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800227f7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800227f8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800227f9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227f9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227fa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800227fb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800227fc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227fd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800227fe +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227fe +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800227ff +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800227ff +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022800 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022800 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022801 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022801 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022802 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022802 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022803 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022803 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022804 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022804 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022805 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022805 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022806 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022806 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022807 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022807 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022808 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022808 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022809 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022809 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002280a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002280b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002280c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002280d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002280e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002280f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002280f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022810 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022810 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022811 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022811 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022812 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022812 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022813 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022813 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022814 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022814 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022815 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022815 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022816 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022816 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022817 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022817 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022818 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022818 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022819 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022819 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002281a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002281b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002281c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002281d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002281e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002281f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002281f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022820 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022820 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022821 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022821 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022822 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022822 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022823 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022823 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022824 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022824 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022825 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022825 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022826 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022826 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022827 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022827 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022828 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022828 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022829 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022829 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002282a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002282b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002282c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002282d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002282e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002282f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002282f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022830 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022830 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022831 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022831 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022832 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022832 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022833 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022833 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022834 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022834 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022835 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022835 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022836 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022836 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022837 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022837 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022838 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022838 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022839 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022839 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002283a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002283b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002283c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002283d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002283e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002283f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002283f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022840 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022840 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022841 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022841 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022842 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022842 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022843 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022843 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022844 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022844 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022845 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022845 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022846 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022846 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022847 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022847 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022848 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022848 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022849 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022849 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002284a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002284b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002284c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002284d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002284e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002284f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002284f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022850 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022850 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022851 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022851 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022852 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022852 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022853 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022853 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022854 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022854 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022855 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022855 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022856 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022856 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022857 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022857 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022858 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022858 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022859 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022859 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002285a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002285b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002285c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002285d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002285e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002285f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002285f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022860 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022860 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022861 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022861 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022862 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022862 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022863 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022863 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022864 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022864 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022865 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022865 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022866 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022866 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022867 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022867 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022868 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022868 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022869 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022869 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002286a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002286b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002286c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002286d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002286e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002286f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002286f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022870 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022870 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022871 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022871 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022872 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022872 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022873 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022873 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022874 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022874 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022875 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022875 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022876 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022876 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022877 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022877 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022878 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022878 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022879 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022879 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002287a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002287b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002287c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002287d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002287e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002287f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002287f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022880 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022880 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022881 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022881 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022882 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022882 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022883 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022883 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022884 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022884 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022885 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022885 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022886 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022886 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022887 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022887 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022888 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022888 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022889 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022889 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002288a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x000000008002288b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002288c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x000000008002288d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x000000008002288e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002288f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002288f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022890 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022890 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x0000000080022891 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022891 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022892 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022892 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022893 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022893 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022894 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022894 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022895 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022895 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022896 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022896 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022897 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022897 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022898 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022898 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022899 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022899 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x000000008002289a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x000000008002289b +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289b +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x000000008002289c +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289c +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x000000008002289d +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289d +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x000000008002289e +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289e +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x000000008002289f +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002289f +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228a0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228a1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228a2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228a3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228a4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228a5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228a6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228a7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228a8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228a9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228a9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228aa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228aa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228ab +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ab +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228ac +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ac +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228ad +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ad +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228ae +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ae +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228af +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228af +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228b0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228b1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228b2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228b3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228b4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228b5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228b6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228b7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228b8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228b9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228b9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228ba +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ba +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228bb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228bb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228bc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228bc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228bd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228bd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228be +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228be +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228bf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228bf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228c0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228c1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228c2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228c3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228c4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228c5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228c6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228c7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228c8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228c9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228c9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228ca +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ca +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228cb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228cb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228cc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228cc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228cd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228cd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228ce +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ce +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228cf +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228cf +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228d0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228d1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228d2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228d3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228d4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228d5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228d6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228d7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228d8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228d9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228d9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228da +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228da +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228db +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228db +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228dc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228dc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228dd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228dd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228de +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228de +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228df +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228df +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228e0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228e1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228e2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228e3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228e4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228e5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228e6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228e7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228e8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228e9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228e9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228ea +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ea +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228eb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228eb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228ec +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ec +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228ed +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ed +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228ee +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ee +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228ef +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ef +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228f0 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f0 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228f1 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f1 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228f2 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f2 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228f3 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f3 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228f4 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f4 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x00000000800228f5 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f5 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x00000000800228f6 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f6 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228f7 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f7 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x00000000800228f8 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f8 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x00000000800228f9 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228f9 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228fa +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fa +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x00000000800228fb +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fb +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x00000000800228fc +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fc +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x00000000800228fd +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fd +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x00000000800228fe +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228fe +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000028 mem 0x00000000800228ff +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x00000000800228ff +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006e mem 0x0000000080022900 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022900 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000075 mem 0x0000000080022901 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022901 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022902 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022902 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000006c mem 0x0000000080022903 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022903 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000029 mem 0x0000000080022904 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022904 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022905 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022905 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000003d mem 0x0000000080022906 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022906 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000020 mem 0x0000000080022907 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022907 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000030 mem 0x0000000080022908 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022908 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x000000000000000a mem 0x0000000080022909 +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x0000000080022909 +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001928 (0x0017c703) lbu a4, 1(a5) +core 0: 3 0x0000000080001928 (0x0017c703) x14 0x0000000000000000 mem 0x000000008002290a +core 0: 0x000000008000192c (0x00178793) addi a5, a5, 1 +core 0: 3 0x000000008000192c (0x00178793) x15 0x000000008002290a +core 0: 0x0000000080001930 (0xfe071ce3) bnez a4, pc - 8 +core 0: 3 0x0000000080001930 (0xfe071ce3) +core 0: 0x0000000080001934 (0x40a787b3) sub a5, a5, a0 +core 0: 3 0x0000000080001934 (0x40a787b3) x15 0x000000000000014a +core 0: 0x0000000080001938 (0x04000713) li a4, 64 +core 0: 3 0x0000000080001938 (0x04000713) x14 0x0000000000000040 +core 0: 0x000000008000193c (0x00e6b023) sd a4, 0(a3) +core 0: 3 0x000000008000193c (0x00e6b023) mem 0x0000000080022740 0x0000000000000040 +core 0: 0x0000000080001940 (0x00100713) li a4, 1 +core 0: 3 0x0000000080001940 (0x00100713) x14 0x0000000000000001 +core 0: 0x0000000080001944 (0x00e6b423) sd a4, 8(a3) +core 0: 3 0x0000000080001944 (0x00e6b423) mem 0x0000000080022748 0x0000000000000001 +core 0: 0x0000000080001948 (0x00a6b823) sd a0, 16(a3) +core 0: 3 0x0000000080001948 (0x00a6b823) mem 0x0000000080022750 0x00000000800227c0 +core 0: 0x000000008000194c (0x00f6bc23) sd a5, 24(a3) +core 0: 3 0x000000008000194c (0x00f6bc23) mem 0x0000000080022758 0x000000000000014a +core 0: 0x0000000080001950 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001950 (0x0330000f) +core 0: 0x0000000080001954 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x0000000080001954 (0xbfffe717) x14 0x000000003ffff954 +core 0: 0x0000000080001958 (0x6ec70713) addi a4, a4, 1772 +core 0: 3 0x0000000080001958 (0x6ec70713) x14 0x0000000040000040 +core 0: 0x000000008000195c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000195c (0xbfffe797) x15 0x000000003ffff95c +core 0: 0x0000000080001960 (0x6ad7b223) sd a3, 1700(a5) +core 0: 3 0x0000000080001960 (0x6ad7b223) mem 0x0000000040000000 0x0000000080022740 +core 0: 0x0000000080001964 (0x00073783) ld a5, 0(a4) +core 0: 3 0x0000000080001964 (0x00073783) x15 0x000000000000014a mem 0x0000000040000040 +core 0: 0x0000000080001968 (0xfe078ee3) beqz a5, pc - 4 +core 0: 3 0x0000000080001968 (0xfe078ee3) +core 0: 0x000000008000196c (0xbfffe797) auipc a5, 0xbfffe +core 0: 3 0x000000008000196c (0xbfffe797) x15 0x000000003ffff96c +core 0: 0x0000000080001970 (0x6c07ba23) sd zero, 1748(a5) +core 0: 3 0x0000000080001970 (0x6c07ba23) mem 0x0000000040000040 0x0000000000000000 +core 0: 0x0000000080001974 (0x0330000f) fence rw,rw +core 0: 3 0x0000000080001974 (0x0330000f) +core 0: 0x0000000080001978 (0x0006b783) ld a5, 0(a3) +core 0: 3 0x0000000080001978 (0x0006b783) x15 0x0000000000000040 mem 0x0000000080022740 +core 0: 0x000000008000197c (0x07010113) addi sp, sp, 112 +core 0: 3 0x000000008000197c (0x07010113) x2 0x0000000080022790 +core 0: 0x0000000080001980 (0x00008067) ret +core 0: 3 0x0000000080001980 (0x00008067) +core 0: 0x0000000080001d24 (0x000a8513) mv a0, s5 +core 0: 3 0x0000000080001d24 (0x000a8513) x10 0x0000000000000000 +core 0: 0x0000000080001d28 (0xba5ff0ef) jal pc - 0x45c +core 0: 3 0x0000000080001d28 (0xba5ff0ef) x1 0x0000000080001d2c +core 0: >>>> tohost_exit +core 0: 0x00000000800018cc (0x00151793) slli a5, a0, 1 +core 0: 3 0x00000000800018cc (0x00151793) x15 0x0000000000000000 +core 0: 0x00000000800018d0 (0x0017e793) ori a5, a5, 1 +core 0: 3 0x00000000800018d0 (0x0017e793) x15 0x0000000000000001 +core 0: 0x00000000800018d4 (0xbfffe717) auipc a4, 0xbfffe +core 0: 3 0x00000000800018d4 (0xbfffe717) x14 0x000000003ffff8d4 +core 0: 0x00000000800018d8 (0x72f73623) sd a5, 1836(a4) +core 0: 3 0x00000000800018d8 (0x72f73623) mem 0x0000000040000000 0x0000000000000001 +core 0: 0x00000000800018dc (0x0000006f) j pc + 0x0 +core 0: 3 0x00000000800018dc (0x0000006f) diff --git a/zfa_micro/zfa.c b/zfa_micro/zfa.c index d513c04..dad7138 100644 --- a/zfa_micro/zfa.c +++ b/zfa_micro/zfa.c @@ -4,194 +4,204 @@ #define N 10 +#define ZFA + static inline uint64_t read_cycles() { uint64_t start; asm volatile ("rdcycle %0" : "=r"(start)); return start; } -// Zfa constant table for Single Precision (fli.s) -const float zfa_constants_s[32] = { - -1.0f, -1.0f, 0x1p-16f, 0x1p-15f, // 0 - 3 - 0x1p-14f, 0x1p-13f, 0x1p-12f, 0x1p-11f, // 4 - 7 - 0x1p-10f, 0x1p-9f, 0x1p-8f, 0x1p-7f, // 8 - 11 - 0x1p-6f, 0x1p-5f, 0x1p-4f, 0x1p-3f, // 12 - 15 - 0.25f, 0.5f, 0.75f, 1.0f, // 16 - 19 - 1.25f, 1.5f, 1.75f, 2.0f, // 20 - 23 - 2.5f, 3.0f, 4.0f, 8.0f, // 24 - 27 - 16.0f, 32.0f, INFINITY, NAN // 28 - 31 -}; - -// Zfa constant table for Double Precision (fli.d) -const double zfa_constants_d[32] = { - -1.0, -1.0f, 0x1p-16, 0x1p-15, // 0 - 3 - 0x1p-14, 0x1p-13, 0x1p-12, 0x1p-11, // 4 - 7 - 0x1p-10, 0x1p-9, 0x1p-8, 0x1p-7, // 8 - 11 - 0x1p-6, 0x1p-5, 0x1p-4, 0x1p-3, // 12 - 15 - 0.25, 0.5, 0.75, 1.0, // 16 - 19 - 1.25, 1.5, 1.75, 2.0, // 20 - 23 - 2.5, 3.0, 4.0, 8.0, // 24 - 27 - 16.0, 32.0, INFINITY, NAN // 28 - 31 -}; - int main() { // fround.s - volatile float a = 3.25f; - volatile float b = round(a); + volatile float a; + volatile float b; + volatile double c; + volatile double d; + + // fround.s + read_cycles(); + for (int i = 0; i < N; i++) { + a = 3.25f; + b = round(a); + } + read_cycles(); // fround.d - volatile double c = 3.25f; - volatile double d = round(c); + read_cycles(); + for (int i = 0; i < N; i++) { + c = 3.25f; + d = round(c); + } + read_cycles(); int res; // fleq.s - #ifndef ZFA - asm volatile ( - "fclass.s t0, %1\n\t" // Classify a - "fclass.s t1, %2\n\t" // Classify b - "or t0, t0, t1\n\t" // Combine classes - "andi t2, t0, 0x200\n\t" // 0x200 is the mask for Quiet NaN - "bnez t2, 1f\n\t" // If qNaN is present, skip to return 0 - "fle.s %0, %1, %2\n\t" // Safe to use signaling comparison - "j 2f\n\t" - "1:\n\t" - "li %0, 0\n\t" // Result is false for NaNs - "2:\n\t" - : "=r" (res) - : "f" (a), "f" (b) - : "t0", "t1", "t2" - ); + read_cycles(); + for (int i = 0; i < N; i++) { + #ifndef ZFA + asm volatile ( + "fclass.s t0, %1\n\t" // Classify a + "fclass.s t1, %2\n\t" // Classify b + "or t0, t0, t1\n\t" // Combine classes + "andi t2, t0, 0x200\n\t" // 0x200 is the mask for Quiet NaN + "bnez t2, 1f\n\t" // If qNaN is present, skip to return 0 + "fle.s %0, %1, %2\n\t" // Safe to use signaling comparison + "j 2f\n\t" + "1:\n\t" + "li %0, 0\n\t" // Result is false for NaNs + "2:\n\t" + : "=r" (res) + : "f" (a), "f" (b) + : "t0", "t1", "t2" + ); - #else - asm volatile("fleq.s t0, ft0, ft1"); - #endif + #else + asm volatile("fleq.s t0, ft0, ft1"); + #endif + } + read_cycles(); // fleq.d - #ifndef ZFA - asm volatile ( - "fclass.d t0, %1\n\t" // Classify double a - "fclass.d t1, %2\n\t" // Classify double b - "or t0, t0, t1\n\t" // Combine classification masks - "andi t2, t0, 0x200\n\t" // 0x200 is the bit for Quiet NaN (qNaN) - "bnez t2, 1f\n\t" // If a qNaN is detected, skip to return 0 - "fle.d %0, %1, %2\n\t" // Signaling comparison: signals on sNaN, result in %0 - "j 2f\n\t" - "1:\n\t" - "li %0, 0\n\t" // Quietly return 0 (false) for qNaNs - "2:\n\t" - : "=r" (res) - : "f" (a), "f" (b) - : "t0", "t1", "t2" - ); + read_cycles(); + for (int i = 0; i < N; i++) { + #ifndef ZFA + asm volatile ( + "fclass.d t0, %1\n\t" // Classify double a + "fclass.d t1, %2\n\t" // Classify double b + "or t0, t0, t1\n\t" // Combine classification masks + "andi t2, t0, 0x200\n\t" // 0x200 is the bit for Quiet NaN (qNaN) + "bnez t2, 1f\n\t" // If a qNaN is detected, skip to return 0 + "fle.d %0, %1, %2\n\t" // Signaling comparison: signals on sNaN, result in %0 + "j 2f\n\t" + "1:\n\t" + "li %0, 0\n\t" // Quietly return 0 (false) for qNaNs + "2:\n\t" + : "=r" (res) + : "f" (a), "f" (b) + : "t0", "t1", "t2" + ); - #else - asm volatile ("fleq.d t0, ft0, ft1"); - #endif + #else + asm volatile ("fleq.d t0, ft0, ft1"); + #endif + } + read_cycles(); // fminm.s float a_fmin = 0.0f, b_fmin = -0.0f; float res_fmin; - #ifndef ZFA - asm volatile ( - "fclass.s t0, %1\n\t" // Classify a - "fclass.s t1, %2\n\t" // Classify b - "li t2, 0x300\n\t" // Mask for any NaN (0x100 sNaN | 0x200 qNaN) - "and t3, t0, t2\n\t" // t3 = is_nan(a) - "and t4, t1, t2\n\t" // t4 = is_nan(b) - "bnez t3, 1f\n\t" // If a is NaN, jump to handle it - "bnez t4, 2f\n\t" // If b is NaN, jump to handle it - "fmin.s %0, %1, %2\n\t" // Neither is NaN, use standard min - "j 3f\n\t" - "1:\n\t" // Case: a is NaN - "bnez t4, 4f\n\t" // If b is also NaN, jump to both-NaN case - "fmv.s %0, %2\n\t" // a is NaN, b is number -> return b - "j 3f\n\t" - "2:\n\t" // Case: b is NaN, a is number -> return a - "fmv.s %0, %1\n\t" - "j 3f\n\t" - "4:\n\t" // Case: Both are NaNs - "fmin.s %0, %1, %2\n\t" // Standard min handles both-NaNs correctly - "3:\n\t" - : "=f" (res_fmin) - : "f" (a_fmin), "f" (b_fmin) - : "t0", "t1", "t2", "t3", "t4" - ); - #else - asm volatile ("fminm.s ft0, ft1, ft2"); - #endif + read_cycles(); + for (int i = 0; i < N; i++) { + #ifndef ZFA + asm volatile ( + "fclass.s t0, %1\n\t" // Classify a + "fclass.s t1, %2\n\t" // Classify b + "li t2, 0x300\n\t" // Mask for any NaN (0x100 sNaN | 0x200 qNaN) + "and t3, t0, t2\n\t" // t3 = is_nan(a) + "and t4, t1, t2\n\t" // t4 = is_nan(b) + "bnez t3, 1f\n\t" // If a is NaN, jump to handle it + "bnez t4, 2f\n\t" // If b is NaN, jump to handle it + "fmin.s %0, %1, %2\n\t" // Neither is NaN, use standard min + "j 3f\n\t" + "1:\n\t" // Case: a is NaN + "bnez t4, 4f\n\t" // If b is also NaN, jump to both-NaN case + "fmv.s %0, %2\n\t" // a is NaN, b is number -> return b + "j 3f\n\t" + "2:\n\t" // Case: b is NaN, a is number -> return a + "fmv.s %0, %1\n\t" + "j 3f\n\t" + "4:\n\t" // Case: Both are NaNs + "fmin.s %0, %1, %2\n\t" // Standard min handles both-NaNs correctly + "3:\n\t" + : "=f" (res_fmin) + : "f" (a_fmin), "f" (b_fmin) + : "t0", "t1", "t2", "t3", "t4" + ); + #else + asm volatile ("fminm.s ft0, ft1, ft2"); + #endif + } + read_cycles(); // fli.s read_cycles(); volatile float res_fli_s[32]; - res_fli_s[0] = -1.0f; - res_fli_s[1] = -1.0f; - res_fli_s[2] = 0x1p-16f; - res_fli_s[3] = 0x1p-15f; - res_fli_s[4] = 0x1p-14f; - res_fli_s[5] = 0x1p-13f; - res_fli_s[6] = 0x1p-12f; - res_fli_s[7] = 0x1p-11f; - res_fli_s[8] = 0x1p-10f; - res_fli_s[9] = 0x1p-9f; - res_fli_s[10] = 0x1p-8f; - res_fli_s[11] = 0x1p-7f; - res_fli_s[12] = 0x1p-6f; - res_fli_s[13] = 0x1p-5f; - res_fli_s[14] = 0x1p-4f; - res_fli_s[15] = 0x1p-3f; - res_fli_s[16] = 0.25f; - res_fli_s[17] = 0.5f; - res_fli_s[18] = 0.75f; - res_fli_s[19] = 1.0f; - res_fli_s[20] = 1.25f; - res_fli_s[21] = 1.5f; - res_fli_s[22] = 1.75f; - res_fli_s[23] = 2.0f; - res_fli_s[24] = 2.5f; - res_fli_s[25] = 3.0f; - res_fli_s[26] = 4.0f; - res_fli_s[27] = 8.0f; - res_fli_s[28] = 16.0f; - res_fli_s[29] = 32.0f; - res_fli_s[30] = INFINITY; - res_fli_s[31] = NAN; + for (int i = 0; i < N; i++) { + res_fli_s[0] = -1.0f; + res_fli_s[1] = -1.0f; + res_fli_s[2] = 0x1p-16f; + res_fli_s[3] = 0x1p-15f; + res_fli_s[4] = 0x1p-14f; + res_fli_s[5] = 0x1p-13f; + res_fli_s[6] = 0x1p-12f; + res_fli_s[7] = 0x1p-11f; + res_fli_s[8] = 0x1p-10f; + res_fli_s[9] = 0x1p-9f; + res_fli_s[10] = 0x1p-8f; + res_fli_s[11] = 0x1p-7f; + res_fli_s[12] = 0x1p-6f; + res_fli_s[13] = 0x1p-5f; + res_fli_s[14] = 0x1p-4f; + res_fli_s[15] = 0x1p-3f; + res_fli_s[16] = 0.25f; + res_fli_s[17] = 0.5f; + res_fli_s[18] = 0.75f; + res_fli_s[19] = 1.0f; + res_fli_s[20] = 1.25f; + res_fli_s[21] = 1.5f; + res_fli_s[22] = 1.75f; + res_fli_s[23] = 2.0f; + res_fli_s[24] = 2.5f; + res_fli_s[25] = 3.0f; + res_fli_s[26] = 4.0f; + res_fli_s[27] = 8.0f; + res_fli_s[28] = 16.0f; + res_fli_s[29] = 32.0f; + res_fli_s[30] = INFINITY; + res_fli_s[31] = NAN; + } + read_cycles(); // fli.d + read_cycles(); volatile double res_fli_d[32]; - res_fli_s[0] = -1.0f; - res_fli_s[1] = -1.0f; - res_fli_s[2] = 0x1p-16f; - res_fli_s[3] = 0x1p-15f; - res_fli_s[4] = 0x1p-14f; - res_fli_s[5] = 0x1p-13f; - res_fli_s[6] = 0x1p-12f; - res_fli_s[7] = 0x1p-11f; - res_fli_s[8] = 0x1p-10f; - res_fli_s[9] = 0x1p-9f; - res_fli_s[10] = 0x1p-8f; - res_fli_s[11] = 0x1p-7f; - res_fli_s[12] = 0x1p-6f; - res_fli_s[13] = 0x1p-5f; - res_fli_s[14] = 0x1p-4f; - res_fli_s[15] = 0x1p-3f; - res_fli_s[16] = 0.25f; - res_fli_s[17] = 0.5f; - res_fli_s[18] = 0.75f; - res_fli_s[19] = 1.0f; - res_fli_s[20] = 1.25f; - res_fli_s[21] = 1.5f; - res_fli_s[22] = 1.75f; - res_fli_s[23] = 2.0f; - res_fli_s[24] = 2.5f; - res_fli_s[25] = 3.0f; - res_fli_s[26] = 4.0f; - res_fli_s[27] = 8.0f; - res_fli_s[28] = 16.0f; - res_fli_s[29] = 32.0f; - res_fli_s[30] = INFINITY; - res_fli_s[31] = NAN; + for (int i = 0; i < N; i++) { + res_fli_s[0] = -1.0f; + res_fli_s[1] = -1.0f; + res_fli_s[2] = 0x1p-16f; + res_fli_s[3] = 0x1p-15f; + res_fli_s[4] = 0x1p-14f; + res_fli_s[5] = 0x1p-13f; + res_fli_s[6] = 0x1p-12f; + res_fli_s[7] = 0x1p-11f; + res_fli_s[8] = 0x1p-10f; + res_fli_s[9] = 0x1p-9f; + res_fli_s[10] = 0x1p-8f; + res_fli_s[11] = 0x1p-7f; + res_fli_s[12] = 0x1p-6f; + res_fli_s[13] = 0x1p-5f; + res_fli_s[14] = 0x1p-4f; + res_fli_s[15] = 0x1p-3f; + res_fli_s[16] = 0.25f; + res_fli_s[17] = 0.5f; + res_fli_s[18] = 0.75f; + res_fli_s[19] = 1.0f; + res_fli_s[20] = 1.25f; + res_fli_s[21] = 1.5f; + res_fli_s[22] = 1.75f; + res_fli_s[23] = 2.0f; + res_fli_s[24] = 2.5f; + res_fli_s[25] = 3.0f; + res_fli_s[26] = 4.0f; + res_fli_s[27] = 8.0f; + res_fli_s[28] = 16.0f; + res_fli_s[29] = 32.0f; + res_fli_s[30] = INFINITY; + res_fli_s[31] = NAN; + } read_cycles(); // fcvtmod.w.d diff --git a/zfhmin_micro/zfhmin.c b/zfhmin_micro/zfhmin.c index 224c452..2fa2099 100644 --- a/zfhmin_micro/zfhmin.c +++ b/zfhmin_micro/zfhmin.c @@ -17,7 +17,9 @@ int main() { volatile double e; volatile _Float16 g; - volatile _Float16 a = 3.0f; + volatile _Float16 a = 3.25f; + + // fcvt.s.h read_cycles(); for (int i = 0; i < N; i++) { @@ -27,7 +29,7 @@ int main() { // fcvt.h.s - volatile float c = 3.0f; + volatile float c = 3.25f; read_cycles(); for (int i = 0; i < N; i++) { @@ -39,13 +41,13 @@ int main() { read_cycles(); for (int i = 0; i < N; i++) { - double e = (double) a; + e = (double) a; } read_cycles(); // fcvt.h.d - volatile double f = 3.0f; + volatile double f = 3.25f; read_cycles(); for (int i = 0; i < N; i++) { diff --git a/zicond_micro/zicond.c b/zicond_micro/zicond.c index b73e24d..c9eec50 100644 --- a/zicond_micro/zicond.c +++ b/zicond_micro/zicond.c @@ -1,7 +1,7 @@ #include #define N 128 -#define ITERATIONS 10 +#define ITERATIONS 1 // Static "messy" data to ensure the branch predictor cannot "learn" the pattern static const uint64_t src_a[N] = { @@ -31,38 +31,27 @@ static inline uint64_t read_cycles() { } int main() { - uint64_t start, end; - - // --- Benchmark 1: Trivial czero.nez --- - // Pattern: if (a != 0) return b else return 0 - start = read_cycles(); + read_cycles(); for (int j = 0; j < ITERATIONS; j++) { for (int i = 0; i < N; i++) { uint64_t a = src_a[i]; uint64_t b = src_b[i]; - // GCC will use czero.eqz here to zero out b if a is 0 + results[i] = (a != 0) ? b : 0; } } - end = read_cycles(); - // Record (end - start) for Zicond enabled vs disabled + read_cycles(); - // --- Benchmark 2: Logic AND (czero with complex condition) --- - // Pattern: if (a != 0 AND b > 500) return b else return 0 - start = read_cycles(); + read_cycles(); for (int j = 0; j < ITERATIONS; j++) { for (int i = 0; i < N; i++) { uint64_t a = src_a[i]; uint64_t b = src_b[i]; - // Uses 'and' to combine conditions, then 'czero' - if (a != 0 && b > 500) { - results[i] = b; - } else { - results[i] = 0; - } + + results[i] = (a != 0) ? b : 0; } } - end = read_cycles(); + read_cycles(); return 0; }